diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | nvim/nvim/init.vim | 5 |
2 files changed, 6 insertions, 1 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 36886ee..9d3977a 100644 --- a/nvim/nvim/init.vim +++ b/nvim/nvim/init.vim @@ -22,9 +22,12 @@ Plugin 'tpope/vim-fireplace' " Syntax highlighting for Rust Plugin 'wting/rust.vim' -" Prose in Vim +" Write with no distractions Plugin 'junegunn/goyo.vim' +" .editorconfig file support +Plugin 'sgur/vim-editorconfig' + " Add plugins here call vundle#end() " required |