1
0
Fork 0

get rid of lightline: completely breaking if misconfigured is not the way to go

This commit is contained in:
Von Random 2017-12-23 10:21:11 +03:00
parent 6243e78746
commit aa034ebcc1

View file

@ -8,7 +8,6 @@ silent!call plug#begin('~/.vim/plugged')
Plug 'junegunn/vim-plug' Plug 'junegunn/vim-plug'
" general plugins " general plugins
Plug 'itchyny/lightline.vim'
Plug 'junegunn/vim-easy-align' Plug 'junegunn/vim-easy-align'
Plug 'mhinz/vim-signify' Plug 'mhinz/vim-signify'
Plug 'tpope/vim-fugitive' Plug 'tpope/vim-fugitive'
@ -24,24 +23,18 @@ Plug 'w0rp/ale', { 'for': 'python' }
Plug 'lifepillar/vim-solarized8' Plug 'lifepillar/vim-solarized8'
Plug 'nanotech/jellybeans.vim' Plug 'nanotech/jellybeans.vim'
Plug 'rakr/vim-one' Plug 'rakr/vim-one'
Plug 'whatyouhide/vim-gotham'
Plug 'morhetz/gruvbox'
" syntax highlight plugins " syntax highlight plugins
Plug 'sheerun/vim-polyglot' Plug 'sheerun/vim-polyglot'
" only plug vimwiki within vimwiki dir " only plug vimwiki within vimwiki dir and this file
if expand('%:p:h') =~ 'vimwiki' if expand('%:p:h') =~ 'vimwiki' || expand('%') =~ 'vimplugins'
Plug 'vimwiki/vimwiki' Plug 'vimwiki/vimwiki'
endif endif
call plug#end() call plug#end()
" lightline options
set noshowmode
let g:solarized_termcolors = 16
let g:lightline = {}
let g:lightline.colorscheme = 'solarized'
let g:lightline.separator = { 'left': "\ue0b0", 'right': "\ue0b2" }
let g:lightline.subseparator = { 'left': "\ue0b1", 'right': "\ue0b3" }
" signify options " signify options
let g:signify_vcs_list = [ 'git' ] let g:signify_vcs_list = [ 'git' ]
let g:signify_sign_change = '~' let g:signify_sign_change = '~'