diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2016-10-05 11:14:05 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2017-06-01 18:37:35 +0200 |
commit | 751e135468cc66d341469c482f847b70a454ce63 (patch) | |
tree | 72080f1c8df69b64577167817e0bdd12d16cd706 | |
parent | 190dca2ef38b9c1fa349cdf19cf8328ed90a369b (diff) | |
download | dotfiles-751e135468cc66d341469c482f847b70a454ce63.tar.xz |
nvim: Update init
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
-rw-r--r-- | nvim/init.vim | 24 |
1 files changed, 7 insertions, 17 deletions
diff --git a/nvim/init.vim b/nvim/init.vim index 096eb4f..d1fe125 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -7,12 +7,14 @@ call plug#begin(expand('$XDG_CONFIG_HOME/nvim/plugs')) Plug 'ctrlpvim/ctrlp.vim' " Fuzzy file/buffer/mru/tag/etc. finder Plug 'mattn/emmet-vim' " Emmet-like snippet system Plug 'tommcdo/vim-exchange' " Easy text exchange operator -Plug 'tpope/vim-git' " Vim runtime files Plug 'tpope/vim-fugitive' " Git wrapper +Plug 'mbbill/undotree' +Plug 'will133/vim-dirdiff' -" Asynchronous :make using Neovim's job-control -" Upstream: Plug 'benekastah/neomake' -Plug 'kyrias/neomake', { 'branch': 'clang-check' } +Plug 'dhruvasagar/vim-table-mode' +Plug 'rust-lang/rust.vim' +Plug 'ledger/vim-ledger' +Plug 'tpope/vim-git' call plug#end() @@ -50,7 +52,7 @@ set noexpandtab set copyindent " Show tabs and end-of-line whitespace -set listchars=tab:»·,trail:· +set listchars=tab:»·,trail:·,nbsp:☠ set list " List of vim syntaxes to highlight in rST code blocks @@ -161,15 +163,3 @@ augroup indentation autocmd! autocmd FileType yaml setlocal ts=2 sts=2 sw=2 noet augroup END - - - -""" -" Neomake -" - -" Open the location list when adding entries -let g:neomake_open_list = 2 - -" Run Neomake automatically when saving and entering a file -autocmd! BufWritePost * Neomake |