diff options
author | Patrick Simianer <pks@pks.rocks> | 2018-10-28 10:35:03 +0100 |
---|---|---|
committer | Patrick Simianer <pks@pks.rocks> | 2018-10-28 10:35:03 +0100 |
commit | 45bc5b8fba4600921154dd55ee9a65af7863f5cf (patch) | |
tree | b322155a21ff53e04734a0481985489539feb99f /vim | |
parent | 8af0aa3ae8f242cf23435d3b2ab2891a554f544d (diff) |
vim: use lightline instead of airline
Diffstat (limited to 'vim')
m--------- | vim/.vim/bundle/airline | 0 | ||||
m--------- | vim/.vim/bundle/lightline | 0 | ||||
-rw-r--r-- | vim/.vimrc | 17 |
3 files changed, 7 insertions, 10 deletions
diff --git a/vim/.vim/bundle/airline b/vim/.vim/bundle/airline deleted file mode 160000 -Subproject 1dc8eac3d232bdcc7941deb47f300ac79e34487 diff --git a/vim/.vim/bundle/lightline b/vim/.vim/bundle/lightline new file mode 160000 +Subproject 47765c787ddc981c2eab6105ade84067d164893 @@ -46,7 +46,7 @@ set spellfile=$HOME/.vim/spell/en.utf-8.add set nospell " color -if $TERM =~ "^rxvt" || $TERM =~ "256color$" +if $TERM =~ "256color$" set t_Co=256 colorscheme pks256 else @@ -66,17 +66,14 @@ nnoremap <C-s> :w<cr> nmap <C-b> :TagbarToggle<cr> imap ^L <Esc>[s1z=`]a - " cursorline -" autocmd InsertEnter * setlocal cursorline -" autocmd InsertLeave * setlocal nocursorline +autocmd InsertEnter * setlocal cursorline +autocmd InsertLeave * setlocal nocursorline -" airline -let g:airline_theme = 'pks256' -let g:airline_powerline_fonts = 1 -let g:airline#extensions#branch#enabled = 1 -let g:airline_symbols = {} -let g:airline_symbols.whitespace = 'Ξ' +" lightline +let g:lightline = { + \ 'colorscheme': 'landscape', + \ } " tagbar let g:tagbar_compact = 1 |