Vimrc cleanup

This commit is contained in:
Austen Adler 2015-07-29 16:27:30 -04:00
parent 1c2329a489
commit 986757c67e

View File

@ -99,13 +99,6 @@ nnoremap <Leader>= yypv$r=
nnoremap <Leader>- yypv$r- nnoremap <Leader>- yypv$r-
nnoremap <Leader>^ yypv$r^ nnoremap <Leader>^ yypv$r^
nnoremap <Leader>" yypv$r" nnoremap <Leader>" yypv$r"
"inoremap '' ''<Left>
"inoremap "" ""<Left>
"inoremap () ()<Left>
"inoremap <> <><Left>
"inoremap {} <Right>{}<Left><CR><Esc>O
"inoremap {% {% %}<Left><Left><Left>
"inoremap [] []<Left>
"inoremap ;; <Esc>m`A;<Esc>``a "inoremap ;; <Esc>m`A;<Esc>``a
"inoremap ;;<Space> <Esc>A;<Esc>o "inoremap ;;<Space> <Esc>A;<Esc>o
"nnoremap ;; m"A;<Esc>`" "nnoremap ;; m"A;<Esc>`"
@ -290,18 +283,10 @@ Plug 'tommcdo/vim-exchange'
"Exchange two selections of text | https://github.com/tommcdo/vim-exchange "Exchange two selections of text | https://github.com/tommcdo/vim-exchange
Plug 'tpope/vim-repeat' Plug 'tpope/vim-repeat'
"Repeat last tpope command with . | https://github.com/tpope/vim-repeat "Repeat last tpope command with . | https://github.com/tpope/vim-repeat
"Plug 'tpope/vim-commentary'
" "Comment selection | https://github.com/tpope/vim-commentary
"Plug 'vim-php/vim-php-refactoring'
" "PHP refactoring | https://github.com/vim-php/vim-php-refactoring
Plug 'tpope/vim-fugitive' Plug 'tpope/vim-fugitive'
"Great Vim-Git compatibility | https://github.com/tpope/vim-fugitive "Great Vim-Git compatibility | https://github.com/tpope/vim-fugitive
"Plug 'tpope/vim-unimpaired'
" "Bracket shortcuts | https://github.com/tpope/vim-unimpaired
Plug 'kien/ctrlp.vim' Plug 'kien/ctrlp.vim'
"Fuzzy file search | https://github.com/kien/ctrlp.vim "Fuzzy file search | https://github.com/kien/ctrlp.vim
"Plug 'tacahiroy/ctrlp-funky'
" "Fuzzy function search | https://github.com/tacahiroy/ctrlp-funky
Plug 'godlygeek/tabular' Plug 'godlygeek/tabular'
"Quickly make tables in vim | https://github.com/godlygeek/tabular "Quickly make tables in vim | https://github.com/godlygeek/tabular
"Plug 'tpope/vim-abolish' "Plug 'tpope/vim-abolish'
@ -312,10 +297,6 @@ Plug 'sirver/UltiSnips'
"Adds snippets | https://github.com/sirver/UltiSnips "Adds snippets | https://github.com/sirver/UltiSnips
Plug 'honza/vim-snippets' Plug 'honza/vim-snippets'
"More snippets | https://github.com/honza/vim-snippets "More snippets | https://github.com/honza/vim-snippets
"if has("lua")
" Plug 'Shougo/neocomplete.vim'
" "Autocompletes | https://github.com/Shougo/neocomplete.vim
"endif
Plug 'othree/eregex.vim' Plug 'othree/eregex.vim'
"Real regexes in vim | https://github.com/othree/eregex.vim "Real regexes in vim | https://github.com/othree/eregex.vim
"Plug 'vim-scripts/sessionman.vim' "Plug 'vim-scripts/sessionman.vim'
@ -328,8 +309,6 @@ Plug 'superbrothers/vim-vimperator'
"Vimperator for vim | https://github.com/superbrothers/vim-vimperator "Vimperator for vim | https://github.com/superbrothers/vim-vimperator
Plug 'Rykka/colorv.vim' Plug 'Rykka/colorv.vim'
"Color selection in vim | https://github.com/Rykka/colorv.vim "Color selection in vim | https://github.com/Rykka/colorv.vim
"Plug 'Townk/vim-autoclose'
" "Autoclose brackets | https://github.com/Townk/vim-autoclose
Plug 'mhinz/vim-signify' Plug 'mhinz/vim-signify'
"Git information inline | https://github.com/mhinz/vim-signify "Git information inline | https://github.com/mhinz/vim-signify
Plug 'jamessan/vim-gnupg' Plug 'jamessan/vim-gnupg'
@ -355,13 +334,13 @@ Plug 'https://github.com/Valloric/YouCompleteMe'
Plug 'https://github.com/evidens/vim-twig' Plug 'https://github.com/evidens/vim-twig'
"Twig highlighting | https://github.com/evidens/vim-twig "Twig highlighting | https://github.com/evidens/vim-twig
Plug 'https://github.com/joonty/vdebug' Plug 'https://github.com/joonty/vdebug'
" | https://github.com/joonty/vdebug "Php debugging | https://github.com/joonty/vdebug
Plug 'https://github.com/zenbro/mirror.vim' Plug 'https://github.com/zenbro/mirror.vim'
" | https://github.com/zenbro/mirror.vim "Edit files remotely | https://github.com/zenbro/mirror.vim
"Plug 'https://github.com/xolox/vim-easytags' Plug 'https://github.com/xolox/vim-easytags'
" " | https://github.com/xolox/vim-easytags "Vim tags | https://github.com/xolox/vim-easytags
"Plug 'https://github.com/xolox/vim-misc' Plug 'https://github.com/xolox/vim-misc'
" " | https://github.com/xolox/vim-misc "Misc (required for easytags) | https://github.com/xolox/vim-misc
call plug#end() call plug#end()
filetype plugin indent on filetype plugin indent on
if exists("+undofile") if exists("+undofile")