update wezterm config
new colorscheme and all
This commit is contained in:
parent
3535cc99ef
commit
b8480e979b
@ -11,55 +11,41 @@ return {
|
|||||||
-- OpenGL for GPU acceleration, Software for CPU
|
-- OpenGL for GPU acceleration, Software for CPU
|
||||||
front_end = "OpenGL",
|
front_end = "OpenGL",
|
||||||
|
|
||||||
colors = {
|
-- colors = {
|
||||||
foreground = "#bdbdbd",
|
-- foreground = "#bdbdbd",
|
||||||
background = "#080808",
|
-- background = "#080808",
|
||||||
cursor_bg = "#9e9e9e",
|
-- cursor_bg = "#9e9e9e",
|
||||||
cursor_fg = "#080808",
|
-- cursor_fg = "#080808",
|
||||||
selection_fg = "#080808",
|
-- selection_fg = "#080808",
|
||||||
selection_bg = "#b2ceee",
|
-- selection_bg = "#b2ceee",
|
||||||
|
--
|
||||||
ansi = {
|
-- ansi = {
|
||||||
"#323437",
|
-- "#323437",
|
||||||
"#ff5454",
|
-- "#ff5454",
|
||||||
"#8cc85f",
|
-- "#8cc85f",
|
||||||
"#e3c78a",
|
-- "#e3c78a",
|
||||||
"#80a0ff",
|
-- "#80a0ff",
|
||||||
"#cf87e8",
|
-- "#cf87e8",
|
||||||
"#79dac8",
|
-- "#79dac8",
|
||||||
"#c6c6c6",
|
-- "#c6c6c6",
|
||||||
},
|
-- },
|
||||||
|
--
|
||||||
brights = {
|
-- brights = {
|
||||||
"#949494",
|
-- "#949494",
|
||||||
"#ff5189",
|
-- "#ff5189",
|
||||||
"#36c692",
|
-- "#36c692",
|
||||||
"#c2c292",
|
-- "#c2c292",
|
||||||
"#74b2ff",
|
-- "#74b2ff",
|
||||||
"#ae81ff",
|
-- "#ae81ff",
|
||||||
"#85dc85",
|
-- "#85dc85",
|
||||||
"#e4e4e4",
|
-- "#e4e4e4",
|
||||||
},
|
-- },
|
||||||
},
|
-- },
|
||||||
|
|
||||||
-- Font config
|
-- Font config
|
||||||
font = font_with_fallback(font_name),
|
font = font_with_fallback(font_name),
|
||||||
font_rules = {
|
|
||||||
{
|
|
||||||
italic = true,
|
|
||||||
font = font_with_fallback(font_name, { italic = true }),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
italic = true,
|
|
||||||
font = font_with_fallback(font_name, { bold = true }),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
intensity = "Bold",
|
|
||||||
font = font_with_fallback(font_name, { bold = true }),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
warn_about_missing_glyphs = false,
|
warn_about_missing_glyphs = false,
|
||||||
font_size = 15,
|
font_size = 17,
|
||||||
line_height = 1.0,
|
line_height = 1.0,
|
||||||
dpi = 96.0,
|
dpi = 96.0,
|
||||||
|
|
||||||
@ -78,6 +64,10 @@ return {
|
|||||||
mods = "CTRL",
|
mods = "CTRL",
|
||||||
action = "ActivateCopyMode",
|
action = "ActivateCopyMode",
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{ key = '=', mods = 'CTRL', action = wezterm.action.IncreaseFontSize },
|
||||||
|
{ key = '-', mods = 'CTRL', action = wezterm.action.DecreaseFontSize },
|
||||||
|
|
||||||
{
|
{
|
||||||
key = "v",
|
key = "v",
|
||||||
mods = "CTRL|SHIFT",
|
mods = "CTRL|SHIFT",
|
||||||
@ -108,10 +98,10 @@ return {
|
|||||||
-- General
|
-- General
|
||||||
automatically_reload_config = true,
|
automatically_reload_config = true,
|
||||||
inactive_pane_hsb = { saturation = 1.0, brightness = 1.0 },
|
inactive_pane_hsb = { saturation = 1.0, brightness = 1.0 },
|
||||||
window_background_opacity = 0.85,
|
window_background_opacity = 0.75,
|
||||||
window_close_confirmation = "NeverPrompt",
|
window_close_confirmation = "NeverPrompt",
|
||||||
window_frame = { active_titlebar_bg = "#45475a", font = font_with_fallback(font_name, { bold = true }) },
|
window_frame = { active_titlebar_bg = "#45475a", font = font_with_fallback(font_name, { bold = true }) },
|
||||||
|
|
||||||
-- color_scheme_dirs = { "~/.config/wezterm/colors" },
|
-- color_scheme_dirs = { "~/.config/wezterm/colors" },
|
||||||
-- color_scheme = "Flexoki Dark",
|
color_scheme = "Fahrenheit",
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user