if has('filetype') filetype indent plugin on endif if has('syntax') syntax on endif if has('mouse') set mouse=a endif if has('persistent_undo') set undodir=$HOME/.vim/undo set undofile 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