vim-easy-align
This commit is contained in:
parent
41dba4d863
commit
c70e6ba69d
|
@ -3,85 +3,85 @@ set runtimepath+=~/.vim/bundle/Vundle.vim
|
|||
call vundle#begin()
|
||||
|
||||
Plugin 'VundleVim/Vundle.vim'
|
||||
"
|
||||
|
||||
"css3-syntax
|
||||
Plugin 'hail2u/vim-css3-syntax.git'
|
||||
"
|
||||
|
||||
"scss-syntax
|
||||
Plugin 'cakebaker/scss-syntax.vim'
|
||||
"
|
||||
|
||||
"tagbar
|
||||
Plugin 'majutsushi/tagbar'
|
||||
"
|
||||
|
||||
"vim-surround
|
||||
Plugin 'tpope/vim-surround'
|
||||
"
|
||||
|
||||
"undotree
|
||||
Plugin 'mbbill/undotree'
|
||||
"
|
||||
|
||||
" Ctrlp
|
||||
Plugin 'ctrlpvim/ctrlp.vim'
|
||||
"
|
||||
" Obsession
|
||||
Plugin 'tpope/vim-obsession'
|
||||
"
|
||||
|
||||
" vim-css-color
|
||||
" Plugin 'ap/vim-css-color'
|
||||
" vim-javascript
|
||||
Plugin 'pangloss/vim-javascript'
|
||||
"
|
||||
|
||||
" ultisnips
|
||||
" https://github.com/sirver/UltiSnips
|
||||
Plugin 'SirVer/ultisnips'
|
||||
" and some snippets
|
||||
" https://github.com/honza/vim-snippets
|
||||
Plugin 'honza/vim-snippets'
|
||||
"
|
||||
|
||||
" ALE
|
||||
" https://github.com/w0rp/ale
|
||||
Plugin 'w0rp/ale'
|
||||
"
|
||||
|
||||
" MatchTag
|
||||
" https://github.com/gregsexton/MatchTag
|
||||
Plugin 'gregsexton/MatchTag'
|
||||
"
|
||||
|
||||
" phpcomplete.vim
|
||||
" https://github.com/shawncplus/phpcomplete.vim
|
||||
Plugin 'shawncplus/phpcomplete.vim'
|
||||
" https://github.com/dsawardekar/wordpress.vim
|
||||
" For up to date Wordpress Files see:
|
||||
" https://github.com/joseluis/wordpress.vim-generator
|
||||
"
|
||||
|
||||
"Plugin 'dsawardekar/wordpress.vim'
|
||||
" disabled - doesn't support universal ctags?
|
||||
|
||||
" vim-vue
|
||||
" https://github.com/posva/vim-vue
|
||||
Plugin 'posva/vim-vue'
|
||||
"
|
||||
|
||||
" vim-commentary
|
||||
" https://github.com/tpope/vim-commentary
|
||||
Plugin 'tpope/vim-commentary'
|
||||
"
|
||||
|
||||
" vim-repeat
|
||||
" https://github.com/tpope/vim-repeat
|
||||
Plugin 'tpope/vim-repeat'
|
||||
"
|
||||
|
||||
" https://github.com/mattn/emmet-vim
|
||||
Plugin 'mattn/emmet-vim'
|
||||
"
|
||||
|
||||
" vimwiki
|
||||
" https://github.com/vimwiki/vimwiki
|
||||
Plugin 'vimwiki/vimwiki'
|
||||
"
|
||||
|
||||
" gitgutter
|
||||
" https://github.com/airblade/vim-gitgutter/blob/master/README.mkd
|
||||
Plugin 'airblade/vim-gitgutter'
|
||||
"
|
||||
|
||||
" vim-gutentags
|
||||
" https://github.com/ludovicchabant/vim-gutentags
|
||||
Plugin 'ludovicchabant/vim-gutentags'
|
||||
"
|
||||
|
||||
" vim-qlist
|
||||
" https://github.com/romainl/vim-qlist/
|
||||
" Plugin 'romainl/vim-qlist'
|
||||
|
@ -113,6 +113,10 @@ Plugin 'gregsexton/gitv'
|
|||
" https://wakatime.com/vim
|
||||
Plugin 'wakatime/vim-wakatime'
|
||||
|
||||
" vim-easy-align
|
||||
" https://github.com/junegunn/vim-easy-align
|
||||
Plugin 'junegunn/vim-easy-align'
|
||||
|
||||
" asyncomplerte.vim
|
||||
" https://github.com/prabirshrestha/asyncomplete.vim
|
||||
Plugin 'prabirshrestha/asyncomplete.vim'
|
||||
|
@ -231,6 +235,12 @@ augroup END
|
|||
|
||||
"}}}
|
||||
|
||||
" vim-easy-align
|
||||
"{{{
|
||||
xmap ga <Plug>(EasyAlign)
|
||||
nmap ga <Plug>(EasyAlign)
|
||||
"}}}
|
||||
|
||||
" switch.vim
|
||||
"{{{
|
||||
let g:switch_mapping = '<space>-'
|
||||
|
|
Loading…
Reference in New Issue