config(nvim): add ExtraWhitespace highlight group

main
sudo pacman -Syu 2024-03-20 14:01:52 +07:00
parent 48b7fc5333
commit af3e262501
2 changed files with 5 additions and 1 deletions

View File

@ -130,6 +130,9 @@ require("lazy").setup({
LineNr = { LineNr = {
fg = colors.overlay1, fg = colors.overlay1,
}, },
ExtraWhitespace = {
bg = color_eva.bg,
},
-- Support mini.statusline -- Support mini.statusline
StatusLineNC = { StatusLineNC = {
fg = colors.flamingo, fg = colors.flamingo,

View File

@ -6,6 +6,7 @@ local act = wezterm.action
local font_iosevka = { local font_iosevka = {
font = wezterm.font({ font = wezterm.font({
family = "Iosevka Term SS08", family = "Iosevka Term SS08",
harfbuzz_features = { "calt=0", "CLIK" },
}), }),
font_size = 16.0, font_size = 16.0,
line_height = 1.2, line_height = 1.2,
@ -96,7 +97,7 @@ local font_berkeley = {
default_cursor_style = "SteadyBar", default_cursor_style = "SteadyBar",
} }
local current_font = font_sudo local current_font = font_iosevka
local current_color_scheme = "Catppuccin Mocha" local current_color_scheme = "Catppuccin Mocha"
return { return {