Wezterm config
This commit is contained in:
parent
fe867afd10
commit
377019e759
1 changed files with 40 additions and 0 deletions
40
wezterm/wezterm.lua
Normal file
40
wezterm/wezterm.lua
Normal file
|
@ -0,0 +1,40 @@
|
|||
local wezterm = require 'wezterm';
|
||||
|
||||
function font_with_fallback(name, params)
|
||||
local names = {name, "Noto Color Emoji", "JetBrains Mono"}
|
||||
return wezterm.font_with_fallback(names,params)
|
||||
end
|
||||
|
||||
return {
|
||||
-- font stuff
|
||||
font = font_with_fallback("Iosevka Custom Light"),
|
||||
font_rules = {
|
||||
{
|
||||
italic = true,
|
||||
font = font_with_fallback("Dank Mono Italic"),
|
||||
},
|
||||
},
|
||||
font_size = 14.0,
|
||||
font_antialias = "Subpixel",
|
||||
font_hinting = "Full",
|
||||
|
||||
-- TERM name
|
||||
term = "xterm-256color",
|
||||
|
||||
-- Color Scheme(s)
|
||||
color_scheme = "Corvine",
|
||||
color_schemes = {
|
||||
["Corvine"] = {
|
||||
background = "#262626",
|
||||
foreground = "#c6c6c6",
|
||||
-- ansi = {"black", "maroon", "green", "olive", "navy", "purple", "teal", "silver"},
|
||||
-- brights = {"grey", "red", "lime", "yellow", "blue", "fuchsia", "aqua", "white"},
|
||||
ansi = {"#3a3a3a", "#d7d7d7", "#87af5f", "#d7d7af", "#87afd7", "#afafd7", "#87d7d7", "#c6c6c6"},
|
||||
brights = {"#626262", "#ffafaf", "#afd787", "#d7d787", "#87d7ff", "#d7afd7", "#5fd7d7", "#eeeeee"}
|
||||
},
|
||||
},
|
||||
|
||||
-- Tab Bar
|
||||
enable_tab_bar = true,
|
||||
hide_tab_bar_if_only_one_tab = true,
|
||||
}
|
Loading…
Add table
Reference in a new issue