feat: improvements

This commit is contained in:
2024-06-10 22:37:50 +02:00
parent d18b3d1683
commit 041f8917d2
8 changed files with 177 additions and 149 deletions

View File

@@ -9,5 +9,6 @@
''; '';
settings = { settings = {
window_padding_width = 10; window_padding_width = 10;
text_composition_strategy = "1.0 0";
}; };
} }

View File

@@ -33,6 +33,14 @@
programs.nixvim = { programs.nixvim = {
extraConfigLua = # lua extraConfigLua = # lua
"if vim.g.neovide then vim.opt.linespace = -1 end"; "if vim.g.neovide then vim.opt.linespace = -1 end";
globals.neovide_cursor_vfx_mode = "pixiedust"; globals = {
neovide_text_gamma = 0.0;
neovide_text_contrast = 0.0;
neovide_position_animation_length = 0.3;
neovide_remember_window_size = false;
neovide_hide_mouse_when_typing = true;
experimental_layer_grouping = true;
neovide_cursor_vfx_mode = "pixiedust";
};
}; };
} }

View File

@@ -37,6 +37,7 @@
lazygit.enable = true; lazygit.enable = true;
mergetool.enable = true; mergetool.enable = true;
trouble.enable = true; trouble.enable = true;
undotree.enable = true;
base = { base = {
completion.enable = true; completion.enable = true;
diagnostics.enable = true; diagnostics.enable = true;

View File

@@ -24,6 +24,10 @@ in
else else
vim.g.${cfg.varName} = not vim.g.${cfg.varName} vim.g.${cfg.varName} = not vim.g.${cfg.varName}
end end
local lualine, lib = pcall(require, 'lualine')
if lualine then
lib.refresh()
end
end end
''; '';

View File

@@ -55,6 +55,10 @@ in
else else
vim.g.${cfg.varName} = not vim.g.${cfg.varName} vim.g.${cfg.varName} = not vim.g.${cfg.varName}
end end
local lualine, lib = pcall(require, 'lualine')
if lualine then
lib.refresh()
end
end end
''; '';
}; };

View File

@@ -13,7 +13,7 @@ in
}; };
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
extraConfigLua = # lua extraConfigLuaPre = # lua
'' ''
require("actions-preview").setup({}) require("actions-preview").setup({})

View File

@@ -257,9 +257,13 @@ in
{ {
event = [ "Signal" ]; event = [ "Signal" ];
pattern = [ "SIGUSR1" ]; pattern = [ "SIGUSR1" ];
command = "colorscheme md3-evo"; command = # vim
"colorscheme md3-evo";
nested = true;
} }
]; ];
plugins.lualine.theme.__raw = # lua
"function() return vim.g.lualine_theme end";
}; };
gtk = { gtk = {

View File

@@ -1,4 +1,8 @@
set background=dark hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="md3-evo"
let g:neovide_transparency = {{custom.transparency}} let g:neovide_transparency = {{custom.transparency}}
let g:neovide_padding_top = {{custom.padding}} let g:neovide_padding_top = {{custom.padding}}
@@ -9,15 +13,6 @@ let g:neovide_floating_blur_amount_x = {{custom.blur}}
let g:neovide_floating_blur_amount_y = {{custom.blur}} let g:neovide_floating_blur_amount_y = {{custom.blur}}
let g:neovide_floating_shadow = 0 let g:neovide_floating_shadow = 0
if exists("g:neovide")
hi Normal guibg={{colors.surface.default.hex}} guifg={{colors.on_surface.default.hex}}
set pumblend=0
set winblend=0
else
hi Normal ctermbg=NONE guibg=NONE guifg={{colors.on_surface.default.hex}}
set noshowmode
end
let g:terminal_color_0 = "{{colors.surface.default.hex}}" let g:terminal_color_0 = "{{colors.surface.default.hex}}"
let g:terminal_color_1 = "{{colors.red.default.hex}}" let g:terminal_color_1 = "{{colors.red.default.hex}}"
let g:terminal_color_2 = "{{colors.green.default.hex}}" let g:terminal_color_2 = "{{colors.green.default.hex}}"
@@ -37,173 +32,184 @@ let g:terminal_color_14 = "{{colors.cyan.default.hex}}"
let g:terminal_color_15 = "{{colors.on_surface_variant.default.hex}}" let g:terminal_color_15 = "{{colors.on_surface_variant.default.hex}}"
set termguicolors set termguicolors
hi Pmenu ctermbg=none guibg=none guifg={{colors.on_surface.default.hex}} set background=dark
hi PmenuSel guibg={{colors.primary.default.hex}} guifg={{colors.on_primary.default.hex}}
hi CursorColumn guibg={{colors.primary.default.hex}} guifg={{colors.on_primary.default.hex}}
hi CursorLine guibg={{colors.primary.default.hex}} guifg={{colors.on_primary.default.hex}}
hi WildMenu guibg={{colors.primary.default.hex}} guifg={{colors.on_primary.default.hex}}
hi MoreMsg guifg={{colors.primary.default.hex}}
hi Question guifg={{colors.secondary.default.hex}}
hi Title guifg={{colors.primary.default.hex}} if exists("g:neovide")
hi FloatTitle guifg={{colors.primary.default.hex}} hi! Normal guibg={{colors.surface.default.hex}} guifg={{colors.on_surface.default.hex}}
hi Visual guifg={{colors.on_primary.default.hex}} guibg={{colors.primary.default.hex}} set pumblend=0
set winblend=0
else
hi! Normal ctermbg=NONE guibg=NONE guifg={{colors.on_surface.default.hex}}
end
hi Folded guibg={{colors.secondary.default.hex}} guifg={{colors.on_secondary.default.hex}} hi! Pmenu ctermbg=none guibg=none guifg={{colors.on_surface.default.hex}}
hi FoldColumn guibg={{colors.secondary.default.hex}} guifg={{colors.on_secondary.default.hex}} hi! PmenuSel guibg={{colors.primary.default.hex}} guifg={{colors.on_primary.default.hex}}
hi! CursorColumn guibg={{colors.primary.default.hex}} guifg={{colors.on_primary.default.hex}}
hi! CursorLine guibg={{colors.primary.default.hex}} guifg={{colors.on_primary.default.hex}}
hi! WildMenu guibg={{colors.primary.default.hex}} guifg={{colors.on_primary.default.hex}}
hi! MoreMsg guifg={{colors.primary.default.hex}}
hi! Question guifg={{colors.secondary.default.hex}}
hi Conceal guibg={{colors.secondary_container.default.hex}} guifg={{colors.on_secondary_container.default.hex}} hi! Title guifg={{colors.primary.default.hex}}
hi! FloatTitle guifg={{colors.primary.default.hex}}
hi! Visual guifg={{colors.on_primary.default.hex}} guibg={{colors.primary.default.hex}}
hi TabLine guibg={{colors.primary_container.default.hex}} guifg={{colors.on_primary_container.default.hex}} hi! Folded guibg={{colors.secondary.default.hex}} guifg={{colors.on_secondary.default.hex}}
hi TabLineFill guibg={{colors.primary.default.hex}} guifg={{colors.on_primary.default.hex}} hi! FoldColumn guibg={{colors.secondary.default.hex}} guifg={{colors.on_secondary.default.hex}}
hi SpecialKey guifg={{colors.primary.default.hex}} hi! Conceal guibg={{colors.secondary_container.default.hex}} guifg={{colors.on_secondary_container.default.hex}}
hi Directory guifg={{colors.primary.default.hex}}
hi Search guifg={{colors.on_tertiary.default.hex}} guibg={{colors.tertiary.default.hex}}
hi CmpItemKindCopilot guifg={{colors.cyan.default.hex}} hi! TabLine guibg={{colors.primary_container.default.hex}} guifg={{colors.on_primary_container.default.hex}}
hi CmpItemKindNpm guifg={{colors.red.default.hex}} hi! TabLineFill guibg={{colors.primary.default.hex}} guifg={{colors.on_primary.default.hex}}
hi Error guibg={{colors.danger_container.default.hex}} guifg={{colors.on_danger_container.default.hex}} hi! SpecialKey guifg={{colors.primary.default.hex}}
hi ErrorMsg guibg={{colors.danger_container.default.hex}} guifg={{colors.on_danger_container.default.hex}} hi! Directory guifg={{colors.primary.default.hex}}
hi WarningMsg guibg={{colors.warning_container.default.hex}} guifg={{colors.on_warning_container.default.hex}} hi! Search guifg={{colors.on_tertiary.default.hex}} guibg={{colors.tertiary.default.hex}}
hi NvimInternalError guibg={{colors.danger.default.hex}} guifg={{colors.on_danger.default.hex}}
hi DiagnosticError guifg={{colors.danger.default.hex}} hi! CmpItemKindCopilot guifg={{colors.cyan.default.hex}}
hi DiagnosticWarn guifg={{colors.warning.default.hex}} hi! CmpItemKindNpm guifg={{colors.red.default.hex}}
hi DiagnosticInfo guifg={{colors.info.default.hex}}
hi DiagnosticHint guifg={{colors.outline.default.hex}}
hi DiagnosticOk guifg={{colors.success.default.hex}}
hi RedrawDebugNormal guibg={{colors.surface_variant.default.hex}} guifg={{colors.on_surface_variant.default.hex}} hi! Error guibg={{colors.danger_container.default.hex}} guifg={{colors.on_danger_container.default.hex}}
hi RedrawDebugClear guibg={{colors.warning.default.hex}} guifg={{colors.on_warning.default.hex}} hi! ErrorMsg guibg={{colors.danger_container.default.hex}} guifg={{colors.on_danger_container.default.hex}}
hi RedrawDebugComposed guibg={{colors.success.default.hex}} guifg={{colors.on_success.default.hex}} hi! WarningMsg guibg={{colors.warning_container.default.hex}} guifg={{colors.on_warning_container.default.hex}}
hi RedrawDebugRecompose guibg={{colors.danger.default.hex}} guifg={{colors.on_danger.default.hex}} hi! NvimInternalError guibg={{colors.danger.default.hex}} guifg={{colors.on_danger.default.hex}}
hi DiagnosticUnderlineError gui=undercurl guisp={{colors.danger.default.hex}} hi! DiagnosticError guifg={{colors.danger.default.hex}}
hi DiagnosticUnderlineWarn gui=undercurl guisp={{colors.warning.default.hex}} hi! DiagnosticWarn guifg={{colors.warning.default.hex}}
hi DiagnosticUnderlineInfo gui=undercurl guisp={{colors.info.default.hex}} hi! DiagnosticInfo guifg={{colors.info.default.hex}}
hi DiagnosticUnderlineHint gui=undercurl guisp={{colors.outline.default.hex}} hi! DiagnosticHint guifg={{colors.outline.default.hex}}
hi DiagnosticUnderlineOk gui=undercurl guisp={{colors.success.default.hex}} hi! DiagnosticOk guifg={{colors.success.default.hex}}
hi DiagnosticDeprecated gui=strikethrough guisp={{colors.danger.default.hex}}
hi SpellBad gui=undercurl guisp={{colors.success.default.hex}} hi! RedrawDebugNormal guibg={{colors.surface_variant.default.hex}} guifg={{colors.on_surface_variant.default.hex}}
hi SpellCap gui=undercurl guisp={{colors.success.default.hex}} hi! RedrawDebugClear guibg={{colors.warning.default.hex}} guifg={{colors.on_warning.default.hex}}
hi SpellRare gui=undercurl guisp={{colors.success.default.hex}} hi! RedrawDebugComposed guibg={{colors.success.default.hex}} guifg={{colors.on_success.default.hex}}
hi SpellLocal gui=undercurl guisp={{colors.success.default.hex}} hi! RedrawDebugRecompose guibg={{colors.danger.default.hex}} guifg={{colors.on_danger.default.hex}}
hi DiffAdd guibg={{colors.green_container.default.hex}} guifg={{colors.on_green_container.default.hex}} hi! DiagnosticUnderlineError gui=undercurl guisp={{colors.danger.default.hex}}
hi DiffChange guibg={{colors.yellow_container.default.hex}} guifg={{colors.on_yellow_container.default.hex}} hi! DiagnosticUnderlineWarn gui=undercurl guisp={{colors.warning.default.hex}}
hi DiffDelete guibg={{colors.red_container.default.hex}} guifg={{colors.on_red_container.default.hex}} hi! DiagnosticUnderlineInfo gui=undercurl guisp={{colors.info.default.hex}}
hi DiffText guibg={{colors.blue_container.default.hex}} guifg={{colors.on_blue_container.default.hex}} hi! DiagnosticUnderlineHint gui=undercurl guisp={{colors.outline.default.hex}}
hi! DiagnosticUnderlineOk gui=undercurl guisp={{colors.success.default.hex}}
hi! DiagnosticDeprecated gui=strikethrough guisp={{colors.danger.default.hex}}
hi NeoTreeGitAdded guifg={{colors.green.default.hex}} hi! SpellBad gui=undercurl guisp={{colors.success.default.hex}}
hi NeoTreeGitDeleted guifg={{colors.red.default.hex}} hi! SpellCap gui=undercurl guisp={{colors.success.default.hex}}
hi NeoTreeGitModified guifg={{colors.yellow.default.hex}} hi! SpellRare gui=undercurl guisp={{colors.success.default.hex}}
hi NeoTreeGitConflict guifg={{colors.danger.default.hex}} hi! SpellLocal gui=undercurl guisp={{colors.success.default.hex}}
hi NeoTreeGitUntracked guifg={{colors.blue.default.hex}}
hi NonText guifg={{colors.outline_variant.default.hex}} hi! DiffAdd guibg={{colors.green_container.default.hex}} guifg={{colors.on_green_container.default.hex}}
hi LineNr guifg={{colors.outline_variant.default.hex}} hi! DiffChange guibg={{colors.yellow_container.default.hex}} guifg={{colors.on_yellow_container.default.hex}}
hi CursorLineNr guifg={{colors.on_surface.default.hex}} hi! DiffDelete guibg={{colors.red_container.default.hex}} guifg={{colors.on_red_container.default.hex}}
hi SignColumn guibg=none guifg={{colors.on_surface.default.hex}} hi! DiffText guibg={{colors.blue_container.default.hex}} guifg={{colors.on_blue_container.default.hex}}
hi IblScope guifg={{colors.on_surface.default.hex}} hi! NeoTreeGitAdded guifg={{colors.green.default.hex}}
hi @ibl.scope.char.1 guifg={{colors.on_surface.default.hex}} hi! NeoTreeGitDeleted guifg={{colors.red.default.hex}}
hi @ibl.scope.underline.1 guisp={{colors.on_surface.default.hex}} hi! NeoTreeGitModified guifg={{colors.yellow.default.hex}}
hi! NeoTreeGitConflict guifg={{colors.danger.default.hex}}
hi! NeoTreeGitUntracked guifg={{colors.blue.default.hex}}
hi Comment guifg={{colors.outline.default.hex}} hi! NonText guifg={{colors.outline_variant.default.hex}}
hi Todo guibg={{colors.yellow_container.default.hex}} guifg={{colors.on_yellow_container.default.hex}} hi! LineNr guifg={{colors.outline_variant.default.hex}}
hi def link @comment.todo Todo hi! CursorLineNr guifg={{colors.on_surface.default.hex}}
hi def link @comment.error Error hi! SignColumn guibg=none guifg={{colors.on_surface.default.hex}}
hi String guifg={{colors.strings.default.hex}} hi! IblScope guifg={{colors.on_surface.default.hex}}
hi! @ibl.scope.char.1 guifg={{colors.on_surface.default.hex}}
hi! @ibl.scope.underline.1 guisp={{colors.on_surface.default.hex}}
hi Identifier guifg={{colors.on_surface.default.hex}} hi! Comment guifg={{colors.outline.default.hex}}
hi Statement gui=bold guifg={{colors.on_surface.default.hex}} hi! Todo guibg={{colors.yellow_container.default.hex}} guifg={{colors.on_yellow_container.default.hex}}
hi def link Operator Normal hi! link @comment.todo Todo
hi @conditional.ternary guifg={{colors.on_surface.default.hex}} hi! link @comment.error Error
hi def link @keyword.conditional.ternary Operator
hi def link Delimiter Normal
hi def link @lsp.mod.local Normal
hi def link @parameter Identifier
hi @lsp.mod.defaultLibrary gui=bold hi! String guifg={{colors.strings.default.hex}}
hi @lsp.mod.readonly gui=italic
hi Constant guifg={{colors.constants.default.hex}} hi! Identifier guifg={{colors.on_surface.default.hex}}
hi def link @variable Constant hi! @variable guifg={{colors.on_surface.default.hex}}
hi! Operator guifg={{colors.on_surface.default.hex}}
hi! Delimiter guifg={{colors.on_surface.default.hex}}
hi! Statement gui=bold guifg={{colors.on_surface.default.hex}}
hi! link Operator Normal
hi! @conditional.ternary guifg={{colors.on_surface.default.hex}}
hi! link @keyword.conditional.ternary Operator
hi! link Delimiter Normal
hi! link @lsp.mod.local Normal
hi! link @parameter Identifier
hi @property guifg={{colors.properties.default.hex}} hi! @lsp.mod.defaultLibrary gui=bold
hi def link @field @property hi! @lsp.mod.readonly gui=italic
hi def link @label.json @property
hi def link @label.jsonc @label.json
hi def link @property.typescript @property
hi def link @lsp.type.property @property
hi def link @attribute @property
hi def link @tag.attribute @property
hi def link @lsp.type.variable Constant hi! Constant guifg={{colors.constants.default.hex}}
hi def link @lsp.typemod.variable.local Identifier
hi Keyword guifg={{colors.keywords.default.hex}} hi! @property guifg={{colors.properties.default.hex}}
hi Special guifg={{colors.keywords.default.hex}} hi! link @field @property
hi def link Character Keyword hi! link @variable.member @property
hi def link Boolean Keyword hi! link @label.json @property
hi def link Repeat Keyword hi! link @label.jsonc @label.json
hi def link Label Keyword hi! link @property.typescript @property
hi def link Exception Keyword hi! link @lsp.type.property @property
hi def link Include Keyword hi! link @attribute @property
hi def link Conditional Keyword hi! link @tag.attribute @property
hi def link @type.builtin Keyword
hi Number guifg={{colors.numbers.default.hex}} hi! link @lsp.type.variable Constant
hi Function guifg={{colors.functions.default.hex}} hi! link @lsp.typemod.variable.local Identifier
hi Structure guifg={{colors.structures.default.hex}} hi! Keyword guifg={{colors.keywords.default.hex}}
hi def link PreProc Structure hi! Special guifg={{colors.keywords.default.hex}}
hi def link Tag Structure hi! link Character Keyword
hi def link @attribute.typescript Structure hi! link Boolean Keyword
hi! link Repeat Keyword
hi! link Label Keyword
hi! link Exception Keyword
hi! link Include Keyword
hi! link Conditional Keyword
hi! link @type.builtin Keyword
hi Type gui=none guifg={{colors.types.default.hex}} hi! Number guifg={{colors.numbers.default.hex}}
hi def link @lsp.type.interface Type hi! Function guifg={{colors.functions.default.hex}}
hi IlluminatedWordText gui=none guibg={{colors.surface_container_highest.default.hex}} hi! Structure guifg={{colors.structures.default.hex}}
hi IlluminatedWordRead gui=none guibg={{colors.surface_container_highest.default.hex}} hi! link PreProc Structure
hi IlluminatedWordWrite gui=none guibg={{colors.surface_container_highest.default.hex}} hi! link Tag Structure
hi MatchParen gui=none guibg={{colors.surface_container_highest.default.hex}} hi! link @attribute.typescript Structure
:lua require('lualine').setup({options = {theme = { hi! Type gui=none guifg={{colors.types.default.hex}}
\ insert = { hi! link @lsp.type.interface Type
\ a = {fg = "{{colors.on_green.default.hex}}", bg = "{{colors.green.default.hex}}", gui = "bold"},
\ b = {fg = "{{colors.on_surface_variant.default.hex}}", bg = "{{colors.surface_variant.default.hex}}"}, hi! IlluminatedWordText gui=none guibg={{colors.surface_container_highest.default.hex}}
\ c = {fg = "{{colors.on_surface.default.hex}}", bg = "{{colors.surface.default.hex}}"}, hi! IlluminatedWordRead gui=none guibg={{colors.surface_container_highest.default.hex}}
hi! IlluminatedWordWrite gui=none guibg={{colors.surface_container_highest.default.hex}}
hi! MatchParen gui=none guibg={{colors.surface_container_highest.default.hex}}
let g:lualine_theme = {
\ "insert": {
\ "a": {"fg": "{{colors.on_green.default.hex}}", "bg": "{{colors.green.default.hex}}", "gui": "bold"},
\ "b": {"fg": "{{colors.on_surface_variant.default.hex}}", "bg": "{{colors.surface_variant.default.hex}}"},
\ "c": {"fg": "{{colors.on_surface.default.hex}}", "bg": "{{colors.surface.default.hex}}"},
\ }, \ },
\ normal = { \ "normal": {
\ a = {fg = "{{colors.on_primary.default.hex}}", bg = "{{colors.primary.default.hex}}", gui = "bold"}, \ "a": {"fg": "{{colors.on_primary.default.hex}}", "bg": "{{colors.primary.default.hex}}", "gui": "bold"},
\ b = {fg = "{{colors.on_surface_variant.default.hex}}", bg = "{{colors.surface_variant.default.hex}}"}, \ "b": {"fg": "{{colors.on_surface_variant.default.hex}}", "bg": "{{colors.surface_variant.default.hex}}"},
\ c = {fg = "{{colors.on_surface.default.hex}}", bg = "{{colors.surface.default.hex}}"}, \ "c": {"fg": "{{colors.on_surface.default.hex}}", "bg": "{{colors.surface.default.hex}}"},
\ }, \ },
\ command = { \ "command": {
\ a = {fg = "{{colors.on_tertiary.default.hex}}", bg = "{{colors.tertiary.default.hex}}", gui = "bold"}, \ "a": {"fg": "{{colors.on_tertiary.default.hex}}", "bg": "{{colors.tertiary.default.hex}}", "gui": "bold"},
\ b = {fg = "{{colors.on_surface_variant.default.hex}}", bg = "{{colors.surface_variant.default.hex}}"}, \ "b": {"fg": "{{colors.on_surface_variant.default.hex}}", "bg": "{{colors.surface_variant.default.hex}}"},
\ c = {fg = "{{colors.on_surface.default.hex}}", bg = "{{colors.surface.default.hex}}"}, \ "c": {"fg": "{{colors.on_surface.default.hex}}", "bg": "{{colors.surface.default.hex}}"},
\ }, \ },
\ visual = { \ "visual": {
\ a = {fg = "{{colors.on_magenta.default.hex}}", bg = "{{colors.magenta.default.hex}}", gui = "bold"}, \ "a": {"fg": "{{colors.on_magenta.default.hex}}", "bg": "{{colors.magenta.default.hex}}", "gui": "bold"},
\ b = {fg = "{{colors.on_surface_variant.default.hex}}", bg = "{{colors.surface_variant.default.hex}}"}, \ "b": {"fg": "{{colors.on_surface_variant.default.hex}}", "bg": "{{colors.surface_variant.default.hex}}"},
\ c = {fg = "{{colors.on_surface.default.hex}}", bg = "{{colors.surface.default.hex}}"}, \ "c": {"fg": "{{colors.on_surface.default.hex}}", "bg": "{{colors.surface.default.hex}}"},
\ }, \ },
\ replace = { \ "replace": {
\ a = {fg = "{{colors.on_red.default.hex}}", bg = "{{colors.red.default.hex}}", gui = "bold"}, \ "a": {"fg": "{{colors.on_red.default.hex}}", "bg": "{{colors.red.default.hex}}", "gui": "bold"},
\ b = {fg = "{{colors.on_surface_variant.default.hex}}", bg = "{{colors.surface_variant.default.hex}}"}, \ "b": {"fg": "{{colors.on_surface_variant.default.hex}}", "bg": "{{colors.surface_variant.default.hex}}"},
\ c = {fg = "{{colors.on_surface.default.hex}}", bg = "{{colors.surface.default.hex}}"}, \ "c": {"fg": "{{colors.on_surface.default.hex}}", "bg": "{{colors.surface.default.hex}}"},
\ }, \ },
\ inactive = { \ "inactive": {
\ a = {fg = "{{colors.on_surface_variant.default.hex}}", bg = "{{colors.surface_variant.default.hex}}", gui = "bold"}, \ "a": {"fg": "{{colors.on_surface_variant.default.hex}}", "bg": "{{colors.surface_variant.default.hex}}", "gui": "bold"},
\ b = {fg = "{{colors.on_surface_variant.default.hex}}", bg = "{{colors.surface_variant.default.hex}}"}, \ "b": {"fg": "{{colors.on_surface_variant.default.hex}}", "bg": "{{colors.surface_variant.default.hex}}"},
\ c = {fg = "{{colors.on_surface_variant.default.hex}}", bg = "{{colors.surface_variant.default.hex}}"}, \ "c": {"fg": "{{colors.on_surface_variant.default.hex}}", "bg": "{{colors.surface_variant.default.hex}}"},
\ }, \ },
\} } }) \}
lua require('nvim-web-devicons').refresh()