1
0
Fork 0
vdotfiles/vimplugins

45 lines
1.1 KiB
Text
Raw Normal View History

" support my own way of using plugins in vim / bash
autocmd BufRead *vimplugins set ft=vim
" enable plugins
source ~/.vim/plugged/vim-plug/plug.vim
silent!call plug#begin('~/.vim/plugged')
" plugin manager for self updates
Plug 'junegunn/vim-plug'
" general plugins
Plug 'junegunn/vim-easy-align'
Plug 'mhinz/vim-signify'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-rsi'
2017-11-08 16:47:04 +02:00
Plug 'vdrandom/vim-tru-typewriter'
Plug 'vim-scripts/directionalWindowResizer'
2017-02-16 18:15:30 +02:00
" IDE liek, per filetype
Plug 'davidhalter/jedi-vim', { 'for': 'python' }
Plug 'w0rp/ale', { 'for': 'python' }
" colorschemes
Plug 'lifepillar/vim-solarized8'
Plug 'nanotech/jellybeans.vim'
2017-12-01 01:47:14 +02:00
Plug 'rakr/vim-one'
Plug 'whatyouhide/vim-gotham'
Plug 'morhetz/gruvbox'
" syntax highlight plugins
2017-02-20 13:55:48 +02:00
Plug 'sheerun/vim-polyglot'
" only plug vimwiki within vimwiki dir and this file
if expand('%:p:h') =~ 'vimwiki' || expand('%') =~ 'vimplugins'
Plug 'vimwiki/vimwiki'
endif
call plug#end()
" signify options
2017-12-01 01:47:14 +02:00
let g:signify_vcs_list = [ 'git' ]
let g:signify_sign_change = '~'
" easy-align options
xmap <Leader>a <Plug>(EasyAlign)
nmap <Leader>a <Plug>(EasyAlign)