summaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
Diffstat (limited to '.config')
-rw-r--r--.config/nvim/init.vim18
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