diff --git a/vim/vimrc b/vim/vimrc index f5c02bd..5947d0d 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -1,3 +1,4 @@ +"source /home/stonewareslord/.vim/autoload/plug.vim if has('conceal') set conceallevel=2 concealcursor=i endif @@ -95,13 +96,13 @@ nnoremap = yypv$r= nnoremap - yypv$r- nnoremap ^ yypv$r^ nnoremap " yypv$r" -inoremap '' '' -inoremap "" "" -inoremap () () -inoremap <> <> -inoremap {} {}O -inoremap {% {% %} -inoremap [] [] +"inoremap '' '' +"inoremap "" "" +"inoremap () () +"inoremap <> <> +"inoremap {} {}O +"inoremap {% {% %} +"inoremap [] [] inoremap ;; m`A;``a inoremap ;; A;o "nnoremap ;; m"A;`" @@ -241,8 +242,6 @@ Plug 'tpope/vim-surround' "Surround selection in ({\"' or HTML tags | https://github.com/tpope/vim-surround Plug 'scrooloose/syntastic' "Syntax checker | https://github.com/scrooloose/syntastic -"Plug 'Shougo/neocomplcache.vim' -" "Tab complete everything | https://github.com/Shougo/neocomplcache.vim Plug 'nathanaelkane/vim-indent-guides' "Indentation guides | https://github.com/nathanaelkane/vim-indent-guides Plug 'elzr/vim-json' @@ -251,10 +250,6 @@ Plug 'groenewege/vim-less' "LESS highlighting | https://github.com/groenewege/vim-less Plug 'pangloss/vim-javascript' "JS syntax and indentation | https://github.com/pangloss/vim-javascript -"Plug 'briancollins/vim-jst' - "Actually, I do not know what this does | https://github.com/briancollins/vim-jst -"Plug 'kchmck/vim-coffee-script' - "Coffeescript syntax | https://github.com/kchmck/vim-coffee-script Plug 'Lokaltog/powerline-fonts' "Better powerline fonts | https://github.com/Lokaltog/powerline-fonts Plug 'bling/vim-airline' @@ -267,8 +262,8 @@ Plug 'altercation/vim-colors-solarized' "Theme | https://github.com/altercation/vim-colors-solarized Plug 'stonewareslord/vim-colors' "Theme pack | https://github.com/spf13/vim-colors -Plug 'spf13/PIV' - "PHP tools | https://github.com/spf13/PIV +"Plug 'spf13/PIV' +" "PHP tools | https://github.com/spf13/PIV Plug 'vim-scripts/AutoTag' "Generates taglist with ctags | https://github.com/vim-scripts/AutoTag Plug 'Lokaltog/vim-easymotion' @@ -281,8 +276,8 @@ Plug '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 'vim-php/vim-php-refactoring' +" "PHP refactoring | https://github.com/vim-php/vim-php-refactoring Plug 'tpope/vim-fugitive' "Great Vim-Git compatibility | https://github.com/tpope/vim-fugitive Plug 'tpope/vim-unimpaired' @@ -337,6 +332,10 @@ Plug 'https://github.com/fatih/vim-go' "go syntax | https://github.com/fatih/vim-go Plug 'https://github.com/kien/rainbow_parentheses.vim' "Colored parenthesis | https://github.com/kien/rainbow_parentheses.vim +Plug 'https://github.com/jiangmiao/auto-pairs' + " | https://github.com/jiangmiao/auto-pairs +"Plug 'https://github.com/Valloric/YouCompleteMe' +" " | https://github.com/Valloric/YouCompleteMe call plug#end() filetype plugin indent on if exists("+undofile")