diff options
author | Ekaitz Zárraga <ekaitz.zarraga@protonmail.com> | 2017-07-29 16:00:06 +0200 |
---|---|---|
committer | Ekaitz Zárraga <ekaitz.zarraga@protonmail.com> | 2017-07-29 16:00:06 +0200 |
commit | cf6004c68bb022170c664c07d6c8f1ca8587f22f (patch) | |
tree | c4ca978390c18fc39e11baa815d169e0364895c8 /nvim | |
parent | 07596e1ec04e869c061fa0195f144378a36e78d6 (diff) |
Add paredit to Vim and use new NetRW config
Diffstat (limited to 'nvim')
-rw-r--r-- | nvim/nvim/init.vim | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/nvim/nvim/init.vim b/nvim/nvim/init.vim index c4fb4ec..cb90fab 100644 --- a/nvim/nvim/init.vim +++ b/nvim/nvim/init.vim @@ -14,6 +14,9 @@ Plugin 'ekaitz-zarraga/droWMark' " CoffeeScript stuff Plugin 'kchmck/vim-coffee-script' +" Paredit for clojure and lisp +Plugin 'vim-scripts/paredit.vim' + " Add plugins here call vundle#end() " required @@ -44,7 +47,11 @@ set splitbelow set splitright " Explore configured to show tree -let g:netrw_liststyle= 3 +" don't use banner +" always open files in previous window +let g:netrw_liststyle = 3 +let g:netrw_banner = 0 +"let g:netrw_browse_split = 4 " Mouse support set mouse=a @@ -85,6 +92,7 @@ nnoremap <CR> :noh<CR><CR> set ignorecase set smartcase + " SPELLING " Highlight spelling errors in red and underline |