summaryrefslogtreecommitdiff
path: root/.config/nvim/init.vim
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/init.vim')
-rw-r--r--.config/nvim/init.vim9
1 files changed, 4 insertions, 5 deletions
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim
index 9858e3b..614be0c 100644
--- a/.config/nvim/init.vim
+++ b/.config/nvim/init.vim
@@ -17,12 +17,11 @@ 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
+ '*';
+ '!vim';
+ css = { rgb_fn = true; };
+ html = { names = false; }
}
EOF