-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.wezterm.lua
More file actions
36 lines (25 loc) · 858 Bytes
/
.wezterm.lua
File metadata and controls
36 lines (25 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
-- Pull in the wezterm API
local wezterm = require 'wezterm'
-- This table will hold the configuration.
local config = wezterm.config_builder()
config.font = wezterm.font('JetBrainsMono Nerd Font', { weight = 'Regular' })
config.font_size = 11.0
config.color_scheme = 'OneDark (base16)'
-- config.color_scheme = 'Ollie (Gogh)'
config.window_background_opacity = 0.93
config.window_padding = {
left = 0,
right = 0,
top = 0,
bottom = 0,
}
config.enable_scroll_bar = false
config.hide_tab_bar_if_only_one_tab = true
-- config.window_decorations = "RESIZE"
config.default_prog = { 'zsh', '-l' }
config.window_close_confirmation = 'NeverPrompt'
config.skip_close_confirmation_for_processes_named = { 'bash', 'sh', 'zsh', 'fish', 'tmux' }
config.initial_rows = 42
config.initial_cols = 120
config.warn_about_missing_glyphs = false
return config