switch to light mode
This commit is contained in:
parent
cac7ec4927
commit
c6e1d517af
1 changed files with 30 additions and 2 deletions
32
.vimrc
32
.vimrc
|
|
@ -11,7 +11,7 @@ source ~/.vim/bundle/flake8/ftplugin/python_flake8.vim
|
||||||
let g:flake8_builtins="_,apply"
|
let g:flake8_builtins="_,apply"
|
||||||
autocmd FileType python map <buffer> <F3> :call Flake8()<CR>
|
autocmd FileType python map <buffer> <F3> :call Flake8()<CR>
|
||||||
|
|
||||||
set background=dark
|
set background=light
|
||||||
set showcmd
|
set showcmd
|
||||||
|
|
||||||
" highlight searches
|
" highlight searches
|
||||||
|
|
@ -29,7 +29,7 @@ colorscheme solarized
|
||||||
|
|
||||||
" Highlight 80 column
|
" Highlight 80 column
|
||||||
set colorcolumn=80
|
set colorcolumn=80
|
||||||
highlight ColorColumn ctermbg=233
|
highlight ColorColumn ctermbg=223
|
||||||
|
|
||||||
" Jump to last position in file when reopening
|
" Jump to last position in file when reopening
|
||||||
if has("autocmd")
|
if has("autocmd")
|
||||||
|
|
@ -48,5 +48,33 @@ set t_Co=256
|
||||||
" always show vim-airline
|
" always show vim-airline
|
||||||
set laststatus=2
|
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
|
" Fix intendation
|
||||||
map <F5> mzgg=G`z<CR>
|
map <F5> mzgg=G`z<CR>
|
||||||
|
|
||||||
|
" editorconfig should not tamper with fugitive
|
||||||
|
let g:EditorConfig_exclude_patterns = ['fugitive://.*']
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue