diff options
author | Camil Staps | 2020-10-01 12:02:42 +0200 |
---|---|---|
committer | Camil Staps | 2020-10-01 12:02:42 +0200 |
commit | 5fa1cc412a2dbc70aa22bd51c5ae8fe73ac84d84 (patch) | |
tree | c88508d0a1cbabebf7e88b4adbffeb1284b0f5f5 | |
parent | Minor updates for Clean (diff) |
Vim: use PaperColor theme instead of solarized
-rw-r--r-- | vim/.vimrc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -80,7 +80,7 @@ syntax enable " Colours & Highlighting set cursorline -colorscheme solarized +colorscheme PaperColor highlight SpellBad cterm=underline,bold ctermfg=black ctermbg=red highlight SpellCap cterm=underline,bold ctermfg=black ctermbg=yellow highlight SpellLocal cterm=underline,bold ctermfg=black ctermbg=blue @@ -97,8 +97,8 @@ endif map <LocalLeader>s :syn sync fromstart<CR> -autocmd BufEnter * colorscheme solarized | set bg=dark -autocmd BufEnter *.txt colorscheme PaperColor | set bg=light +autocmd BufEnter * set bg=dark +autocmd BufEnter *.txt,*.md set bg=light " Setting the color scheme messes up the git gutter highlight groups, so reset " them. For some discussion, see: |