diff options
author | Adam <56338480+adastx@users.noreply.github.com> | 2021-10-06 01:12:12 +0200 |
---|---|---|
committer | Adam <56338480+adastx@users.noreply.github.com> | 2021-10-06 01:12:12 +0200 |
commit | ef60da241458cf1706a71e1e67ee936cf2273857 (patch) | |
tree | b35e718f95efb68c05a4ee659d82c098e02684b0 /.config/nvim/init.vim | |
parent | 56d42d6d2ed2f07448f4bd3fe239e4074caad155 (diff) |
...
Diffstat (limited to '.config/nvim/init.vim')
-rw-r--r-- | .config/nvim/init.vim | 9 |
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 |