diff options
author | Ekaitz Zárraga <ekaitz.zarraga@protonmail.com> | 2018-10-27 20:35:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-27 20:35:38 +0200 |
commit | bf9561f212e9c8b2a1e82d6873cb213c8ec865ea (patch) | |
tree | 465ca45a728a2bef466347759b322329070d4b5d /nvim | |
parent | fb533af93255f15a51a58cb57faa5825119b0a64 (diff) | |
parent | ba3ca687cf6c5b6ae770331eecb57438e44c4973 (diff) |
Merge pull request #1 from ekaitz-zarraga/editorconfig
Editorconfig
Diffstat (limited to 'nvim')
-rw-r--r-- | nvim/nvim/init.vim | 5 |
1 files changed, 4 insertions, 1 deletions
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 |