diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-03-05 13:41:54 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-03-05 13:41:54 +0100 |
commit | 2abd0e0218ba60e9f0dad348a3c2243a3324e40c (patch) | |
tree | c9e9f8e9968d6e8b93b90b4bd97de68084c0a316 /.config/nvim/color-tweaks.vim | |
parent | cc249cec9ca858caf529ec4475ee750ff72ac4cc (diff) |
mode: reload nvim colors live
Diffstat (limited to '.config/nvim/color-tweaks.vim')
-rw-r--r-- | .config/nvim/color-tweaks.vim | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/.config/nvim/color-tweaks.vim b/.config/nvim/color-tweaks.vim new file mode 100644 index 0000000..b59a67e --- /dev/null +++ b/.config/nvim/color-tweaks.vim @@ -0,0 +1,38 @@ +" vim sneak labels +hi! link CocFloating SneakScope + +" change default vim-sneak colors to be more readable +hi! SneakLabel gui=reverse +hi! SneakLabelMask gui=reverse + +" fix terminal color +hi! link TermCursor Cursor +hi! link TermCursorNC Cursor + +" fix which key color +hi! link WhichKeyFloating NormalFloat + +" line numbers / gutter colors +hi! SignColumn guibg=NONE ctermbg=NONE +hi GitGutterAdd guibg=NONE +hi GitGutterChange guibg=NONE +hi GitGutterDelete guibg=NONE +hi GitGutterAddIntraLine guibg=NONE +hi GitGutterAddInvisible guibg=NONE +hi GitGutterChangeDelete guibg=NONE +hi GitGutterChangeInvisible guibg=NONE +hi GitGutterDeleteIntraLine guibg=NONE +hi GitGutterDeleteInvisible guibg=NONE +hi CocErrorSign guibg=NONE +hi CocGitAddedSign guibg=NONE +hi CocGitChangeRemovedSign guibg=NONE +hi CocGitChangedSign guibg=NONE +hi CocGitRemovedSign guibg=NONE +hi CocGitTopRemovedSign guibg=NONE +hi CocHintSign guibg=NONE +hi CocInfoSign guibg=NONE +hi CocWarningSign guibg=NONE + +" fix disappearing CocFadeOut +hi! link Conceal Comment + |