diff options
author | Adam <56338480+adastx@users.noreply.github.com> | 2021-10-06 12:50:06 +0200 |
---|---|---|
committer | Adam <56338480+adastx@users.noreply.github.com> | 2021-10-06 13:03:14 +0200 |
commit | 95ce104cb9493fdfc40081d51d9558ba01f75efc (patch) | |
tree | ab112f74ae03526f55b9e37d363dd197d6867bba /.config/nvim/init.vim | |
parent | ef60da241458cf1706a71e1e67ee936cf2273857 (diff) |
nvim installed comment plugin
Diffstat (limited to '.config/nvim/init.vim')
-rw-r--r-- | .config/nvim/init.vim | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 614be0c..7764174 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -1,27 +1,27 @@ if has('filetype') - filetype indent plugin on + filetype indent plugin on endif if has('syntax') - syntax on + syntax on endif if has('mouse') - set mouse=a + set mouse=a endif if has('persistent_undo') - set undodir=$HOME/.vim/undo - set undofile + set undodir=$HOME/.vim/undo + set undofile endif lua require 'init' lua << EOF require 'colorizer'.setup { - '*'; - '!vim'; - css = { rgb_fn = true; }; - html = { names = false; } + '*'; + '!vim'; + css = { rgb_fn = true; }; + html = { names = false; } } EOF |