From aa8f86fcd766d7056c171fa441903c115a6b623b Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Fri, 3 Jan 2020 15:10:09 +0100 Subject: [PATCH] Cleanup old disabled plugins; some better comments --- .vimrc | 27 +++++++-------------------- 1 file changed, 7 insertions(+), 20 deletions(-) diff --git a/.vimrc b/.vimrc index 0893a68..e091b2b 100644 --- a/.vimrc +++ b/.vimrc @@ -27,11 +27,6 @@ Plugin 'VundleVim/Vundle.vim' " `brew install ctags` for example Plugin 'majutsushi/tagbar' nmap :TagbarToggle -" The unite or unite.vim plug-in can search and display information from -" arbitrary sources like files, buffers, recently used files or registers. -"Plugin 'Shougo/unite.vim' -"call unite#filters#matcher_default#use(['matcher_fuzzy']) -"nnoremap r :Unite -start-insert file_rec " Nice statusbar, alternative for powerline. Get powerline font for best " looking result @@ -40,7 +35,7 @@ Plugin 'vim-airline/vim-airline-themes' let g:airline_theme = "hybrid" " Disable showing current function in airline let g:airline#extensions#tagbar#enabled = 0 -" Better showing of open buffers (open files) +" Better showing of open buffers (open files), integrates with airline Plugin 'bling/vim-bufferline' " Version control notes in the line number bar @@ -74,17 +69,13 @@ nnoremap gps :Dispatch! git push nnoremap gpl :Dispatch! git pull -" Better matching of code pairs -"Plugin 'andymass/vim-matchup' -" Deferred highlighting improves cursor movement performance -"let g:matchup_matchparen_deferred = 1 - - " Think of sensible.vim as one step above 'nocompatible' mode: a universal " set of defaults that (hopefully) everyone can agree on. Plugin 'tpope/vim-sensible' + " Nice colour scheme Plugin 'kristijanhusak/vim-hybrid-material' + " Quick file system tree, mapped to Ctrl+n for quick toggle Plugin 'scrooloose/nerdtree' Plugin 'Xuyuanp/nerdtree-git-plugin' @@ -92,17 +83,16 @@ map :NERDTreeToggle let NERDTreeIgnore = ['\.pyc$', 'tags'] " close vim if the only window left open is a NERDTree autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTreeType") && b:NERDTreeType == "primary") | q | endif - Plugin 'tiagofumo/vim-nerdtree-syntax-highlight' if has('patch-8.0-1364') " Easily change position of windows " Requires vim 8.0.1364 or neovim (exact version uncertain). - "gh: soft move left - "gj: soft move down - "gk: soft move up - "gl: soft move right + " gh: soft move left + " gj: soft move down + " gk: soft move up + " gl: soft move right Plugin 'andymass/vim-tradewinds' endif @@ -298,9 +288,6 @@ let g:rainbow_conf = { \ }, \} -" Python virtualenv support -"Plugin 'jmcantrell/vim-virtualenv' - " Python goodness "Plugin 'klen/python-mode'