add lightline for vim, some workarounds for solarized and remove fossil from signify
This commit is contained in:
parent
25eeeff21d
commit
271906e4be
1 changed files with 11 additions and 1 deletions
12
vimplugins
12
vimplugins
|
@ -11,6 +11,7 @@ Plug 'junegunn/vim-plug'
|
||||||
|
|
||||||
" general plugins
|
" general plugins
|
||||||
Plug 'ervandew/supertab'
|
Plug 'ervandew/supertab'
|
||||||
|
Plug 'itchyny/lightline.vim'
|
||||||
Plug 'jeetsukumaran/vim-buffergator'
|
Plug 'jeetsukumaran/vim-buffergator'
|
||||||
Plug 'junegunn/vim-easy-align'
|
Plug 'junegunn/vim-easy-align'
|
||||||
Plug 'mhinz/vim-signify'
|
Plug 'mhinz/vim-signify'
|
||||||
|
@ -32,8 +33,17 @@ Plug 'neilhwatson/vim_cf3'
|
||||||
Plug 'sheerun/vim-polyglot'
|
Plug 'sheerun/vim-polyglot'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
|
" lightline options
|
||||||
|
set noshowmode
|
||||||
|
let g:solarized_termcolors = 16
|
||||||
|
let g:lightline = {
|
||||||
|
\ 'colorscheme': 'solarized',
|
||||||
|
\ 'separator': { 'left': "\ue0b0", 'right': "\ue0b2" },
|
||||||
|
\ 'subseparator': { 'left': "\ue0b1", 'right': "\ue0b3" },
|
||||||
|
\ }
|
||||||
|
|
||||||
" signify options
|
" signify options
|
||||||
let g:signify_vcs_list=[ 'git', 'fossil' ]
|
let g:signify_vcs_list=[ 'git' ]
|
||||||
let g:signify_sign_change='~'
|
let g:signify_sign_change='~'
|
||||||
|
|
||||||
" easy-align options
|
" easy-align options
|
||||||
|
|
Loading…
Reference in a new issue