vim-easy-align

This commit is contained in:
ManjaroOne666 2018-05-08 22:21:55 +01:00
parent 41dba4d863
commit c70e6ba69d
1 changed files with 29 additions and 19 deletions

View File

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