wezterm visual config
This commit is contained in:
parent
19321169d9
commit
0ffbad8cb9
@ -32,35 +32,10 @@ config.keys = {
|
|||||||
action = act.DetachDomain { DomainName = 'devhost' },
|
action = act.DetachDomain { DomainName = 'devhost' },
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
config.window_decorations = "RESIZE | INTEGRATED_BUTTONS"
|
||||||
|
config.initial_cols = 127
|
||||||
|
config.initial_rows = 67
|
||||||
|
|
||||||
config.window_frame = {
|
|
||||||
-- The font used in the tab bar.
|
|
||||||
-- Roboto Bold is the default; this font is bundled
|
|
||||||
-- with wezterm.
|
|
||||||
-- Whatever font is selected here, it will have the
|
|
||||||
-- main font setting appended to it to pick up any
|
|
||||||
-- fallback fonts you may have used there.
|
|
||||||
font = wezterm.font { family = 'Jetbrains Mono', weight = 700 },
|
|
||||||
|
|
||||||
-- The size of the font in the tab bar.
|
|
||||||
-- Default to 10.0 on Windows but 12.0 on other systems
|
|
||||||
font_size = 15.0,
|
|
||||||
|
|
||||||
-- The overall background color of the tab bar when
|
|
||||||
-- the window is focused
|
|
||||||
active_titlebar_bg = '#333333',
|
|
||||||
|
|
||||||
-- The overall background color of the tab bar when
|
|
||||||
-- the window is not focused
|
|
||||||
inactive_titlebar_bg = '#333333',
|
|
||||||
}
|
|
||||||
|
|
||||||
config.colors = {
|
|
||||||
tab_bar = {
|
|
||||||
-- The color of the inactive tab bar edge/divider
|
|
||||||
inactive_tab_edge = '#575757',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
-- For example, changing the color scheme: ==> A!=B
|
-- For example, changing the color scheme: ==> A!=B
|
||||||
@ -70,5 +45,41 @@ config.freetype_load_target = 'Light'
|
|||||||
config.font_size = 16
|
config.font_size = 16
|
||||||
config.line_height = 1.05
|
config.line_height = 1.05
|
||||||
config.harfbuzz_features = { 'calt=1', 'clig=0', 'liga=0' }
|
config.harfbuzz_features = { 'calt=1', 'clig=0', 'liga=0' }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
config.window_padding = {
|
||||||
|
left = 0,
|
||||||
|
right = 0,
|
||||||
|
top = 0,
|
||||||
|
bottom = 0,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
config.window_frame = {
|
||||||
|
font = wezterm.font { family = 'Jetbrains Mono', weight = 700 },
|
||||||
|
|
||||||
|
-- The size of the font in the tab bar.
|
||||||
|
font_size = 15.0,
|
||||||
|
|
||||||
|
-- The overall background color of the tab bar when
|
||||||
|
-- the window is focused
|
||||||
|
active_titlebar_bg = '#222222',
|
||||||
|
inactive_titlebar_bg = '#000000',
|
||||||
|
active_titlebar_fg = '#ffffff',
|
||||||
|
|
||||||
|
border_left_width = '0.5cell',
|
||||||
|
border_right_width = '0.5cell',
|
||||||
|
border_bottom_height = '0cell',
|
||||||
|
border_top_height = '0.1cell',
|
||||||
|
border_left_color = '#1c2836',
|
||||||
|
border_right_color = '#1c2836',
|
||||||
|
border_bottom_color = '#1c2836',
|
||||||
|
border_top_color = '#1c2836',
|
||||||
|
|
||||||
|
-- The overall background color of the tab bar when
|
||||||
|
-- the window is not focused
|
||||||
|
}
|
||||||
|
|
||||||
-- and finally, return the configuration to wezterm
|
-- and finally, return the configuration to wezterm
|
||||||
return config
|
return config
|
||||||
|
Loading…
Reference in New Issue
Block a user