Made changes

This commit is contained in:
Austen Adler 2015-06-15 00:28:01 -04:00
parent ca09b74235
commit ebbd334557

View File

@ -1,3 +1,4 @@
"source /home/stonewareslord/.vim/autoload/plug.vim
if has('conceal') if has('conceal')
set conceallevel=2 concealcursor=i set conceallevel=2 concealcursor=i
endif endif
@ -95,13 +96,13 @@ 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 () ()<Left> "inoremap () ()<Left>
inoremap <> <><Left> "inoremap <> <><Left>
inoremap {} <Right>{}<Left><CR><Esc>O "inoremap {} <Right>{}<Left><CR><Esc>O
inoremap {% {% %}<Left><Left><Left> "inoremap {% {% %}<Left><Left><Left>
inoremap [] []<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>`"
@ -241,8 +242,6 @@ Plug 'tpope/vim-surround'
"Surround selection in ({\"' or HTML tags | https://github.com/tpope/vim-surround "Surround selection in ({\"' or HTML tags | https://github.com/tpope/vim-surround
Plug 'scrooloose/syntastic' Plug 'scrooloose/syntastic'
"Syntax checker | https://github.com/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' Plug 'nathanaelkane/vim-indent-guides'
"Indentation guides | https://github.com/nathanaelkane/vim-indent-guides "Indentation guides | https://github.com/nathanaelkane/vim-indent-guides
Plug 'elzr/vim-json' Plug 'elzr/vim-json'
@ -251,10 +250,6 @@ Plug 'groenewege/vim-less'
"LESS highlighting | https://github.com/groenewege/vim-less "LESS highlighting | https://github.com/groenewege/vim-less
Plug 'pangloss/vim-javascript' Plug 'pangloss/vim-javascript'
"JS syntax and indentation | https://github.com/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' Plug 'Lokaltog/powerline-fonts'
"Better powerline fonts | https://github.com/Lokaltog/powerline-fonts "Better powerline fonts | https://github.com/Lokaltog/powerline-fonts
Plug 'bling/vim-airline' Plug 'bling/vim-airline'
@ -267,8 +262,8 @@ Plug 'altercation/vim-colors-solarized'
"Theme | https://github.com/altercation/vim-colors-solarized "Theme | https://github.com/altercation/vim-colors-solarized
Plug 'stonewareslord/vim-colors' Plug 'stonewareslord/vim-colors'
"Theme pack | https://github.com/spf13/vim-colors "Theme pack | https://github.com/spf13/vim-colors
Plug 'spf13/PIV' "Plug 'spf13/PIV'
"PHP tools | https://github.com/spf13/PIV " "PHP tools | https://github.com/spf13/PIV
Plug 'vim-scripts/AutoTag' Plug 'vim-scripts/AutoTag'
"Generates taglist with ctags | https://github.com/vim-scripts/AutoTag "Generates taglist with ctags | https://github.com/vim-scripts/AutoTag
Plug 'Lokaltog/vim-easymotion' Plug 'Lokaltog/vim-easymotion'
@ -281,8 +276,8 @@ 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' Plug 'tpope/vim-commentary'
"Comment selection | https://github.com/tpope/vim-commentary "Comment selection | https://github.com/tpope/vim-commentary
Plug 'vim-php/vim-php-refactoring' "Plug 'vim-php/vim-php-refactoring'
"PHP refactoring | https://github.com/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' Plug 'tpope/vim-unimpaired'
@ -337,6 +332,10 @@ Plug 'https://github.com/fatih/vim-go'
"go syntax | https://github.com/fatih/vim-go "go syntax | https://github.com/fatih/vim-go
Plug 'https://github.com/kien/rainbow_parentheses.vim' Plug 'https://github.com/kien/rainbow_parentheses.vim'
"Colored parenthesis | 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() call plug#end()
filetype plugin indent on filetype plugin indent on
if exists("+undofile") if exists("+undofile")