From 07cb1f417835afc9212f122c39ff5191701ff1ad Mon Sep 17 00:00:00 2001 From: Ekaitz Zárraga Date: Sat, 27 Oct 2018 20:26:45 +0200 Subject: Goyo --- nvim/nvim/init.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/nvim/init.vim b/nvim/nvim/init.vim index 36886ee..bd6b57f 100644 --- a/nvim/nvim/init.vim +++ b/nvim/nvim/init.vim @@ -22,7 +22,7 @@ Plugin 'tpope/vim-fireplace' " Syntax highlighting for Rust Plugin 'wting/rust.vim' -" Prose in Vim +" Write with no distractions Plugin 'junegunn/goyo.vim' " Add plugins here -- cgit v1.2.3 From ba3ca687cf6c5b6ae770331eecb57438e44c4973 Mon Sep 17 00:00:00 2001 From: Ekaitz Zárraga Date: Sat, 27 Oct 2018 20:32:03 +0200 Subject: Editorconfig module --- .gitignore | 2 ++ nvim/nvim/init.vim | 3 +++ 2 files changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 1da63eb..428fa7c 100644 --- a/.gitignore +++ b/.gitignore @@ -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 -- cgit v1.2.3