Vim: Remove unused plugins
This commit is contained in:
20
.vim/vimrc
20
.vim/vimrc
@@ -38,9 +38,7 @@ Plugin 'neoclide/coc.nvim'
|
|||||||
|
|
||||||
" Code development helpers {{{
|
" Code development helpers {{{
|
||||||
"Plugin 'rhysd/vim-clang-format'
|
"Plugin 'rhysd/vim-clang-format'
|
||||||
"Plugin 'quark-zju/vim-cpp-auto-include'
|
|
||||||
Plugin 'tpope/vim-commentary' " Toggle C style comments with gc
|
Plugin 'tpope/vim-commentary' " Toggle C style comments with gc
|
||||||
"Plugin 'mnpk/vim-jira-complete'
|
|
||||||
"Plugin 'KabbAmine/zeavim.vim' " gz to open zeal
|
"Plugin 'KabbAmine/zeavim.vim' " gz to open zeal
|
||||||
Plugin 'mbbill/undotree'
|
Plugin 'mbbill/undotree'
|
||||||
Plugin 'kkoomen/vim-doge'
|
Plugin 'kkoomen/vim-doge'
|
||||||
@@ -52,29 +50,20 @@ Plugin 'svermeulen/vim-yoink'
|
|||||||
|
|
||||||
" Files switch, jump and grep-like tools {{{
|
" Files switch, jump and grep-like tools {{{
|
||||||
"Plugin 'ericcurtin/CurtineIncSw.vim' "Toggle .c .h files
|
"Plugin 'ericcurtin/CurtineIncSw.vim' "Toggle .c .h files
|
||||||
"Plugin 'vim-scripts/a.vim' Curtine is the new a.vim
|
|
||||||
Plugin 'preservim/nerdtree'
|
Plugin 'preservim/nerdtree'
|
||||||
Plugin 'Xuyuanp/nerdtree-git-plugin'
|
Plugin 'Xuyuanp/nerdtree-git-plugin'
|
||||||
Plugin 'mileszs/ack.vim' " Ack integration
|
Plugin 'mileszs/ack.vim' " Ack integration
|
||||||
"Plugin 'jremmen/vim-ripgrep'
|
|
||||||
"Plugin 'ctrlpvim/ctrlp.vim'
|
|
||||||
Plugin 'junegunn/fzf.vim'
|
Plugin 'junegunn/fzf.vim'
|
||||||
Plugin 'fholgado/minibufexpl.vim'
|
|
||||||
Plugin 'justinmk/vim-sneak' " easy movement
|
Plugin 'justinmk/vim-sneak' " easy movement
|
||||||
"Plugin 'easymotion/vim-easymotion'
|
|
||||||
Plugin 'ludovicchabant/vim-gutentags' "Auto generate tags
|
Plugin 'ludovicchabant/vim-gutentags' "Auto generate tags
|
||||||
"Plugin 'andymass/vim-matchup' " Improve if-else matches
|
|
||||||
"Plugin 'vim-scripts/taglist.vim'
|
|
||||||
Plugin 'liuchengxu/vista.vim'
|
Plugin 'liuchengxu/vista.vim'
|
||||||
Plugin 'wellle/targets.vim'
|
Plugin 'wellle/targets.vim'
|
||||||
" }}}
|
" }}}
|
||||||
|
|
||||||
" Git integration {{{
|
" Git integration {{{
|
||||||
"Plugin 'airblade/vim-gitgutter' " Mark edited lines
|
|
||||||
Plugin 'mhinz/vim-signify' " Mark edited lines - faster gitgutter
|
Plugin 'mhinz/vim-signify' " Mark edited lines - faster gitgutter
|
||||||
"Plugin 'rhysd/git-messenger.vim' " show git history
|
"Plugin 'rhysd/git-messenger.vim' " show git history
|
||||||
Plugin 'tpope/vim-fugitive' " Git integration
|
Plugin 'tpope/vim-fugitive' " Git integration
|
||||||
Plugin 'lambdalisue/gina.vim'
|
|
||||||
" }}}
|
" }}}
|
||||||
|
|
||||||
" Syntax for random filetypes {{{
|
" Syntax for random filetypes {{{
|
||||||
@@ -88,19 +77,18 @@ Plugin 'pboettch/vim-cmake-syntax'
|
|||||||
Plugin 'flazz/vim-colorschemes' " lots of colorschemes
|
Plugin 'flazz/vim-colorschemes' " lots of colorschemes
|
||||||
"Plugin 'jeaye/color_coded'
|
"Plugin 'jeaye/color_coded'
|
||||||
"Plugin 'thiagoalessio/rainbow_levels.vim'
|
"Plugin 'thiagoalessio/rainbow_levels.vim'
|
||||||
Plugin 'fielding/vice'
|
"Plugin 'fielding/vice'
|
||||||
Plugin 'whatyouhide/vim-gotham'
|
Plugin 'whatyouhide/vim-gotham'
|
||||||
" }}}
|
" }}}
|
||||||
|
|
||||||
" Other plugins (external tools, etc) {{{
|
" Other plugins (external tools, etc) {{{
|
||||||
"Plugin 'Shougo/vimproc.vim'
|
|
||||||
Plugin 'junegunn/goyo.vim'
|
Plugin 'junegunn/goyo.vim'
|
||||||
Plugin 'jez/vim-superman' "vman application
|
Plugin 'jez/vim-superman' "vman application
|
||||||
Plugin 'vimwiki/vimwiki'
|
Plugin 'vimwiki/vimwiki'
|
||||||
"Plugin 'metakirby5/codi.vim' " live coding
|
"Plugin 'metakirby5/codi.vim' " live coding
|
||||||
"Plugin 'pelodelfuego/vim-swoop' " editing in parallel
|
Plugin 'vim-airline/vim-airline'
|
||||||
"Plugin 'vim-airline/vim-airline'
|
|
||||||
Plugin 'mhinz/vim-startify'
|
Plugin 'mhinz/vim-startify'
|
||||||
|
Plugin 'n0v1c3/vira'
|
||||||
" }}}
|
" }}}
|
||||||
|
|
||||||
call vundle#end() " required
|
call vundle#end() " required
|
||||||
@@ -326,7 +314,7 @@ set foldenable
|
|||||||
set foldlevelstart=999
|
set foldlevelstart=999
|
||||||
set foldnestmax=5
|
set foldnestmax=5
|
||||||
set foldtext=FoldFormat()
|
set foldtext=FoldFormat()
|
||||||
set fillchars=fold:\
|
set fillchars=fold:\ " comment just to remove trailing
|
||||||
set foldmethod=syntax
|
set foldmethod=syntax
|
||||||
nnoremap <space> za
|
nnoremap <space> za
|
||||||
nnoremap <Home> zm
|
nnoremap <Home> zm
|
||||||
|
|||||||
Reference in New Issue
Block a user