From c6e1d517af48ba22d03fcc855b40b2ee2688b2b8 Mon Sep 17 00:00:00 2001 From: Oliver Ladner Date: Mon, 24 Jul 2017 13:36:00 +0200 Subject: [PATCH] switch to light mode --- .vimrc | 32 ++++++++++++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) diff --git a/.vimrc b/.vimrc index b613945..d0bae1a 100644 --- a/.vimrc +++ b/.vimrc @@ -11,7 +11,7 @@ source ~/.vim/bundle/flake8/ftplugin/python_flake8.vim let g:flake8_builtins="_,apply" autocmd FileType python map :call Flake8() -set background=dark +set background=light set showcmd " highlight searches @@ -29,7 +29,7 @@ colorscheme solarized " Highlight 80 column set colorcolumn=80 -highlight ColorColumn ctermbg=233 +highlight ColorColumn ctermbg=223 " Jump to last position in file when reopening if has("autocmd") @@ -48,5 +48,33 @@ set t_Co=256 " always show vim-airline set laststatus=2 +let g:airline#extensions#branch#format = 1 + + if !exists('g:airline_symbols') + let g:airline_symbols = {} + endif + + " unicode symbols + let g:airline_left_sep = 'Β»' + let g:airline_left_sep = 'β–Ά' + let g:airline_right_sep = 'Β«' + let g:airline_right_sep = 'β—€' + let g:airline_symbols.crypt = 'πŸ”’' + let g:airline_symbols.linenr = '␊' + let g:airline_symbols.linenr = '␀' + let g:airline_symbols.linenr = 'ΒΆ' + let g:airline_symbols.maxlinenr = '☰' + let g:airline_symbols.maxlinenr = '' + let g:airline_symbols.branch = 'βŽ‡' + let g:airline_symbols.paste = 'ρ' + let g:airline_symbols.paste = 'Þ' + let g:airline_symbols.paste = 'βˆ₯' + let g:airline_symbols.spell = 'Ꞩ' + let g:airline_symbols.notexists = 'βˆ„' + let g:airline_symbols.whitespace = 'Ξ' + " Fix intendation map mzgg=G`z + +" editorconfig should not tamper with fugitive +let g:EditorConfig_exclude_patterns = ['fugitive://.*']