diff options
Diffstat (limited to '.config/nvim/init.vim')
-rw-r--r-- | .config/nvim/init.vim | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 6907a74..9858e3b 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -16,3 +16,13 @@ if has('persistent_undo') endif lua require 'init' + +" lua require'colorizer'.setup() +lua << EOF +require 'colorizer'.setup { + '*'; -- Highlight all files, but customize some others. + '!vim'; -- Exclude vim from highlighting. + css = { rgb_fn = true; }; -- Enable parsing rgb(...) functions in css. + html = { names = false; } -- Disable parsing "names" like Blue or Gray +} +EOF |