.vimrc: Use Selenized instead of Solarized

Selenized is a similar colorscheme to Solarized, but mapping to ANSI
color codes with less side effects. Note that the Selenized palatte
only has sixteen colors so we should tell vim to not attempt to make
a 256-color approximation.

https://github.com/jan-warchol/selenized/issues/65
This commit is contained in:
Alan Orth 2020-07-10 13:44:07 +03:00
parent 46f1cad6a1
commit 49d3094671
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 3 additions and 1 deletions

4
.vimrc
View File

@ -12,7 +12,9 @@ filetype plugin on " enable file type plugins
filetype indent on " enable file type indents
set background=dark
colorscheme solarized
" restrict vim to 16 ANSI colors in the palette instead of approximating 256
set t_Co=16
colorscheme selenized
" for per-directory vimrc files
" see: https://jezenthomas.com/how-i-write-invoices-in-vim/