tangled
alpha
login
or
join now
boltless.me
/
dot
0
fork
atom
dotfiles
0
fork
atom
overview
issues
pulls
pipelines
chore: update wezterm config
BoltlessEngineer
2 years ago
cf3fcb92
325cbda3
+26
-3
2 changed files
expand all
collapse all
unified
split
wezterm
colorscheme
kanagawa-dragon.lua
wezterm.lua
+22
wezterm/colorscheme/kanagawa-dragon.lua
···
1
1
+
-- TODO: change to dragon colorscheme
2
2
+
return {
3
3
+
force_reverse_video_cursor = true,
4
4
+
colors = {
5
5
+
foreground = "#dcd7ba",
6
6
+
background = "#1f1f28",
7
7
+
8
8
+
cursor_bg = "#c8c093",
9
9
+
cursor_fg = "#c8c093",
10
10
+
cursor_border = "#c8c093",
11
11
+
12
12
+
selection_fg = "#c8c093",
13
13
+
selection_bg = "#2d4f67",
14
14
+
15
15
+
scrollbar_thumb = "#16161d",
16
16
+
split = "#16161d",
17
17
+
18
18
+
ansi = { "#090618", "#c34043", "#76946a", "#c0a36e", "#7e9cd8", "#957fb8", "#6a9589", "#c8c093" },
19
19
+
brights = { "#727169", "#e82424", "#98bb6c", "#e6c384", "#7fb4ca", "#938aa9", "#7aa89f", "#dcd7ba" },
20
20
+
indexed = { [16] = "#ffa066", [17] = "#ff5d62" },
21
21
+
},
22
22
+
}
+4
-3
wezterm/wezterm.lua
···
82
82
end
83
83
)
84
84
85
85
-
local lineheight = 1.5
85
85
+
local lineheight = 1.2
86
86
87
87
return {
88
88
font = wezterm.font_with_fallback {
···
132
132
left = 0,
133
133
right = 0,
134
134
},
135
135
-
use_resize_increments = true,
135
135
+
use_resize_increments = false,
136
136
font_size = 12.0,
137
137
-- set underline at bottom position based on lineheight
138
138
-- NOTE: subtract 150 to prevent undercurl cutoff
139
139
underline_position = ((lineheight - 1) * 1000 + 300) - 150 .. '%',
140
140
underline_thickness = "1.5pt",
141
141
cursor_thickness = "1pt",
142
142
-
color_scheme = 'Catppuccin Mocha',
142
142
+
-- TODO: import colorscheme from Neovim
143
143
+
color_scheme = 'Kanagawa (Gogh)',
143
144
disable_default_key_bindings = false,
144
145
enable_csi_u_key_encoding = false,
145
146
enable_kitty_keyboard = true,