Remove more vim plugins I don't use
This commit is contained in:
parent
bd60af8d31
commit
99935c268d
24
vimrc
24
vimrc
|
@ -163,7 +163,6 @@ Plug 'bling/vim-airline' " Enhanced status/tabline.
|
||||||
Plug 'embear/vim-localvimrc' " Add a .lvimrc to a folder to override .vimrc config.
|
Plug 'embear/vim-localvimrc' " Add a .lvimrc to a folder to override .vimrc config.
|
||||||
Plug 'tpope/vim-obsession' " Continuously updated session files (tracks window positions, open folds, etc).
|
Plug 'tpope/vim-obsession' " Continuously updated session files (tracks window positions, open folds, etc).
|
||||||
Plug 'tpope/vim-fugitive' " Git wrapper (I particularly like :Gblame, which I've wrapped as :Blame)
|
Plug 'tpope/vim-fugitive' " Git wrapper (I particularly like :Gblame, which I've wrapped as :Blame)
|
||||||
Plug 'junegunn/goyo.vim' " Distraction-free mode with centered buffer.
|
|
||||||
Plug 'sir-pinecone/vim-ripgrep' " Fast grep-like search. Requires ripgrep; install Rust package: `cargo install ripgrep`.
|
Plug 'sir-pinecone/vim-ripgrep' " Fast grep-like search. Requires ripgrep; install Rust package: `cargo install ripgrep`.
|
||||||
Plug 'itchyny/vim-cursorword' " Underlines all instances of the symbol under the cursor.
|
Plug 'itchyny/vim-cursorword' " Underlines all instances of the symbol under the cursor.
|
||||||
Plug 'airblade/vim-gitgutter' " Displays a git diff in the vim gutter and allows staging/unstaging of hunks.
|
Plug 'airblade/vim-gitgutter' " Displays a git diff in the vim gutter and allows staging/unstaging of hunks.
|
||||||
|
@ -172,7 +171,6 @@ Plug 'majutsushi/tagbar' " Display ctags in a window, ordered by sc
|
||||||
Plug 'tommcdo/vim-lion' " For text alignment, use gl= and gL=
|
Plug 'tommcdo/vim-lion' " For text alignment, use gl= and gL=
|
||||||
Plug 'tpope/tpope-vim-abolish' " Easily search for, substitute, and abbreviate multiple variants of a word. Add them to `vim/after/plugin/abolish.vim`
|
Plug 'tpope/tpope-vim-abolish' " Easily search for, substitute, and abbreviate multiple variants of a word. Add them to `vim/after/plugin/abolish.vim`
|
||||||
Plug 'vim-scripts/AnsiEsc.vim' " Ansi escape sequences concealed, but highlighted as specified.
|
Plug 'vim-scripts/AnsiEsc.vim' " Ansi escape sequences concealed, but highlighted as specified.
|
||||||
Plug 'tommcdo/vim-kangaroo' " Maintain a manually-defined jump stack. Set with zp or <leader>a and pop with zP or <leader>aa.
|
|
||||||
Plug 'mh21/errormarker.vim' " Build error highlighting (requires skywind3000/asyncrun.vim).
|
Plug 'mh21/errormarker.vim' " Build error highlighting (requires skywind3000/asyncrun.vim).
|
||||||
Plug 'skywind3000/asyncrun.vim' " Async commands.
|
Plug 'skywind3000/asyncrun.vim' " Async commands.
|
||||||
Plug 'nelstrom/vim-qargs' " For the GlobalReplaceIt function (i.e. search and replace).
|
Plug 'nelstrom/vim-qargs' " For the GlobalReplaceIt function (i.e. search and replace).
|
||||||
|
@ -181,13 +179,6 @@ if IsWindows()
|
||||||
Plug 'suxpert/vimcaps' " Disable capslock (useful if the OS isn't configured to do so).
|
Plug 'suxpert/vimcaps' " Disable capslock (useful if the OS isn't configured to do so).
|
||||||
endif
|
endif
|
||||||
|
|
||||||
"///////////////////
|
|
||||||
" MAYBE SOME DAY
|
|
||||||
"///////////////////
|
|
||||||
"Plug 'shougo/unite.vim' " Create user interfaces. Not currently needed.
|
|
||||||
"Plug 'itchyny/vim-winfix' " Fix the focus and the size of windows in Vim.
|
|
||||||
"Plug 'scrooloose/nerdcommenter' " Better commenting.
|
|
||||||
|
|
||||||
"////////////////////////////////////////////////////////////////
|
"////////////////////////////////////////////////////////////////
|
||||||
" COLORS
|
" COLORS
|
||||||
"////////////////////////////////////////////////////////////////
|
"////////////////////////////////////////////////////////////////
|
||||||
|
@ -213,13 +204,6 @@ Plug 'pprovost/vim-ps1' " PowerShell
|
||||||
Plug 'fedorenchik/fasm.vim' " Flat Assembler
|
Plug 'fedorenchik/fasm.vim' " Flat Assembler
|
||||||
Plug 'elixir-editors/vim-elixir' " Elixir
|
Plug 'elixir-editors/vim-elixir' " Elixir
|
||||||
|
|
||||||
|
|
||||||
" Clojure -- Disabled since I'm not doing any Clojure work atm.
|
|
||||||
"Plug 'tpope/vim-classpath' " For Java
|
|
||||||
"Plug 'guns/vim-clojure-highlight'
|
|
||||||
"Plug 'guns/vim-clojure-static'
|
|
||||||
"Plug 'tpope/vim-fireplace', { 'for': 'clojure' }
|
|
||||||
|
|
||||||
"//////////////////////////////
|
"//////////////////////////////
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
@ -227,7 +211,6 @@ filetype plugin indent on
|
||||||
|
|
||||||
"---------------------------------------------------------------------------------------------------
|
"---------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
"################################################################
|
"################################################################
|
||||||
"################################################################
|
"################################################################
|
||||||
"################################################################
|
"################################################################
|
||||||
|
@ -765,7 +748,6 @@ inoremap <s-tab> <c-n>
|
||||||
|
|
||||||
"---------------------------------------------------------------------------------------------------
|
"---------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
"################################################################
|
"################################################################
|
||||||
"################################################################
|
"################################################################
|
||||||
"################################################################
|
"################################################################
|
||||||
|
@ -785,12 +767,6 @@ let g:localvimrc_ask = 0
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
noremap <F12> :TagbarToggle<cr>
|
noremap <F12> :TagbarToggle<cr>
|
||||||
|
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
||||||
" KANGAROO
|
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
||||||
nmap <leader>a zp
|
|
||||||
nmap <leader>aa zP
|
|
||||||
|
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
" GITGUTTER
|
" GITGUTTER
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user