-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwezterm.lua
More file actions
50 lines (40 loc) · 857 Bytes
/
wezterm.lua
File metadata and controls
50 lines (40 loc) · 857 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
local wezterm = require 'wezterm'
local config = wezterm.config_builder()
config.font = wezterm.font('Hack Nerd Font', { weight = 'Regular' })
config.font_size = 13.0
config.enable_tab_bar = false
config.window_decorations = 'RESIZE'
-- Kanso Zen colorscheme
config.force_reverse_video_cursor = true
config.colors = {
foreground = "#C5C9C7",
background = "#090E13",
cursor_bg = "#090E13",
cursor_fg = "#C5C9C7",
cursor_border = "#C5C9C7",
selection_fg = "#C5C9C7",
selection_bg = "#24262D",
scrollbar_thumb = "#24262D",
split = "#24262D",
ansi = {
"#090E13",
"#C4746E",
"#8A9A7B",
"#C4B28A",
"#8BA4B0",
"#A292A3",
"#8EA4A2",
"#A4A7A4",
},
brights = {
"#A4A7A4",
"#E46876",
"#87A987",
"#E6C384",
"#7FB4CA",
"#938AA9",
"#7AA89F",
"#C5C9C7",
}
}
return config