diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-07-27 15:09:50 -0400 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-07-27 15:09:50 -0400 |
| commit | 1e219bd15e9a659e87f0ebc07bb0ab953d4cf197 (patch) | |
| tree | ab43620cd76e579cb174fccd3cd452f1f010d227 | |
| parent | 8c702bf6512dc1f92ca70efe2520fda64b7cc4e9 (diff) | |
| download | home-1e219bd15e9a659e87f0ebc07bb0ab953d4cf197.tar.gz | |
modules/neovim: adjust ugly tinted-themining highlights
| -rw-r--r-- | modules/neovim/nvim/lua/config/colorscheme.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/neovim/nvim/lua/config/colorscheme.lua b/modules/neovim/nvim/lua/config/colorscheme.lua index 6510131..abc7fb3 100644 --- a/modules/neovim/nvim/lua/config/colorscheme.lua +++ b/modules/neovim/nvim/lua/config/colorscheme.lua @@ -6,6 +6,14 @@ vim.api.nvim_create_autocmd("ColorScheme", { callback = function(args) vim.api.nvim_set_hl(0, 'LineNr', { fg = colors.base02 }) vim.api.nvim_set_hl(0, 'LineNrAbove', { fg = colors.base02 }) vim.api.nvim_set_hl(0, 'LineNrBelow', { fg = colors.base02 }) + vim.api.nvim_set_hl(0, 'TSVariable', { fg = colors.base05 }) + vim.api.nvim_set_hl(0, 'Identifier', { fg = colors.base05 }) + vim.api.nvim_set_hl(0, 'Operator', { fg = colors.base08 }) + vim.api.nvim_set_hl(0, 'TSOperator', { fg = colors.base08 }) + vim.api.nvim_set_hl(0, 'TSCharacter', { fg = colors.base0b }) + vim.api.nvim_set_hl(0, 'TSOperator', { fg = colors.base08 }) + vim.api.nvim_set_hl(0, 'TSLabel', { fg = colors.base0C }) + vim.api.nvim_set_hl(0, 'Label', { fg = colors.base0C }) vim.cmd[[ hi TabLineFill guibg=bg hi TabLineSel guibg=bg guifg=fg |