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
|
||||
front_end = "OpenGL",
|
||||
|
||||
colors = {
|
||||
foreground = "#bdbdbd",
|
||||
background = "#080808",
|
||||
cursor_bg = "#9e9e9e",
|
||||
cursor_fg = "#080808",
|
||||
selection_fg = "#080808",
|
||||
selection_bg = "#b2ceee",
|
||||
|
||||
ansi = {
|
||||
"#323437",
|
||||
"#ff5454",
|
||||
"#8cc85f",
|
||||
"#e3c78a",
|
||||
"#80a0ff",
|
||||
"#cf87e8",
|
||||
"#79dac8",
|
||||
"#c6c6c6",
|
||||
},
|
||||
|
||||
brights = {
|
||||
"#949494",
|
||||
"#ff5189",
|
||||
"#36c692",
|
||||
"#c2c292",
|
||||
"#74b2ff",
|
||||
"#ae81ff",
|
||||
"#85dc85",
|
||||
"#e4e4e4",
|
||||
},
|
||||
},
|
||||
-- colors = {
|
||||
-- foreground = "#bdbdbd",
|
||||
-- background = "#080808",
|
||||
-- cursor_bg = "#9e9e9e",
|
||||
-- cursor_fg = "#080808",
|
||||
-- selection_fg = "#080808",
|
||||
-- selection_bg = "#b2ceee",
|
||||
--
|
||||
-- ansi = {
|
||||
-- "#323437",
|
||||
-- "#ff5454",
|
||||
-- "#8cc85f",
|
||||
-- "#e3c78a",
|
||||
-- "#80a0ff",
|
||||
-- "#cf87e8",
|
||||
-- "#79dac8",
|
||||
-- "#c6c6c6",
|
||||
-- },
|
||||
--
|
||||
-- brights = {
|
||||
-- "#949494",
|
||||
-- "#ff5189",
|
||||
-- "#36c692",
|
||||
-- "#c2c292",
|
||||
-- "#74b2ff",
|
||||
-- "#ae81ff",
|
||||
-- "#85dc85",
|
||||
-- "#e4e4e4",
|
||||
-- },
|
||||
-- },
|
||||
|
||||
-- Font config
|
||||
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,
|
||||
font_size = 15,
|
||||
font_size = 17,
|
||||
line_height = 1.0,
|
||||
dpi = 96.0,
|
||||
|
||||
@ -78,6 +64,10 @@ return {
|
||||
mods = "CTRL",
|
||||
action = "ActivateCopyMode",
|
||||
},
|
||||
|
||||
{ key = '=', mods = 'CTRL', action = wezterm.action.IncreaseFontSize },
|
||||
{ key = '-', mods = 'CTRL', action = wezterm.action.DecreaseFontSize },
|
||||
|
||||
{
|
||||
key = "v",
|
||||
mods = "CTRL|SHIFT",
|
||||
@ -108,10 +98,10 @@ return {
|
||||
-- General
|
||||
automatically_reload_config = true,
|
||||
inactive_pane_hsb = { saturation = 1.0, brightness = 1.0 },
|
||||
window_background_opacity = 0.85,
|
||||
window_background_opacity = 0.75,
|
||||
window_close_confirmation = "NeverPrompt",
|
||||
window_frame = { active_titlebar_bg = "#45475a", font = font_with_fallback(font_name, { bold = true }) },
|
||||
|
||||
-- color_scheme_dirs = { "~/.config/wezterm/colors" },
|
||||
-- color_scheme = "Flexoki Dark",
|
||||
color_scheme = "Fahrenheit",
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user