diff options
author | Ekaitz Zárraga <ekaitz.zarraga@protonmail.com> | 2018-10-27 20:32:03 +0200 |
---|---|---|
committer | Ekaitz Zárraga <ekaitz.zarraga@protonmail.com> | 2018-10-27 20:32:03 +0200 |
commit | ba3ca687cf6c5b6ae770331eecb57438e44c4973 (patch) | |
tree | 465ca45a728a2bef466347759b322329070d4b5d | |
parent | 07cb1f417835afc9212f122c39ff5191701ff1ad (diff) |
Editorconfig module
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | nvim/nvim/init.vim | 3 |
2 files changed, 5 insertions, 0 deletions
@@ -2,4 +2,6 @@ nvim/nvim/.netrwhist nvim/nvim/bundle/ nvim/nvim/shada/ nvim/nvim/swap/ +nvim/nvim/undo/ vim/.vim/bundle/ +vim/.vim/.netrwhist diff --git a/nvim/nvim/init.vim b/nvim/nvim/init.vim index bd6b57f..9d3977a 100644 --- a/nvim/nvim/init.vim +++ b/nvim/nvim/init.vim @@ -25,6 +25,9 @@ Plugin 'wting/rust.vim' " Write with no distractions Plugin 'junegunn/goyo.vim' +" .editorconfig file support +Plugin 'sgur/vim-editorconfig' + " Add plugins here call vundle#end() " required |