1
0
Fork 0

vimplugins cleanup

This commit is contained in:
Von Random 2017-02-20 14:55:48 +03:00
parent 1e9cbe148f
commit 8e7904a273

View file

@ -14,10 +14,8 @@ Plug 'jeetsukumaran/vim-buffergator' "buffer management
Plug 'junegunn/vim-easy-align' "aligning
Plug 'mhinz/vim-signify' "version control system gutter info
Plug 'nvie/vim-togglemouse' "hotkey to toggle mouse
Plug 'ctrlpvim/ctrlp.vim' "fuzzy file search
Plug 'tpope/vim-fugitive' "moar git awesomeness
Plug 'vimwiki/vimwiki' "vimwiki
Plug 'sheerun/vim-polyglot' "syntax
" IDE liek, per filetype
Plug 'neomake/neomake', { 'for': 'python' } "linter
@ -26,15 +24,12 @@ Plug 'ervandew/supertab', { 'for': 'python' } "TAB autocompletion
" colorschemes
Plug 'lifepillar/vim-solarized8'
Plug 'KeitaNakamura/neodark.vim'
" syntax highlight plugins
Plug 'neilhwatson/vim_cf3'
Plug 'sheerun/vim-polyglot'
call plug#end()
" buffergator options
map <Leader><Tab> :BuffergatorToggle<CR>
" signify options
let g:signify_vcs_list=[ 'git', 'fossil' ]
let g:signify_sign_change='~'
@ -49,15 +44,6 @@ nmap <Leader>a <Plug>(EasyAlign)
" neomake
nmap <Leader>i :Neomake<CR>
let g:neomake_open_list = 7
let g:neomake_error_sign={
\ 'text': 'e>',
\ 'texthl': 'ErrorMsg',
\ }
let g:neomake_warning_sign={
\ 'text': 'w>',
\ 'texthl': 'WarningMsg',
\ }
let g:neomake_info_sign={
\ 'text': 'i>',
\ 'texthl': 'InfoMsg',
\ }
let g:neomake_error_sign = { 'text': 'e>', 'texthl': 'ErrorMsg' }
let g:neomake_warning_sign = { 'text': 'w>', 'texthl': 'WarningMsg' }
let g:neomake_info_sign = { 'text': 'i>', 'texthl': 'InfoMsg' }