alpha
Login
or
Join now
boltless.me
/
dot
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
dotfiles
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
chore: update wezterm config
author
BoltlessEngineer
date
2 years ago
(Apr 14, 2024, 5:46 PM +0900)
commit
cf3fcb92
cf3fcb920f6ab393c0c550248ad4b91d4bc01462
parent
325cbda3
325cbda38fde04a8d448b2d91462239875649d35
+26
-3
2 changed files
Expand all
Collapse all
Unified
Split
wezterm
colorscheme
kanagawa-dragon.lua
wezterm.lua
+22
wezterm/colorscheme/kanagawa-dragon.lua
View file
Reviewed
···
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
View file
Reviewed
···
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,