diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-28 21:17:26 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-28 21:17:26 +0200 |
commit | b5d6d93bd6a382da8192b3b89ee83a24cda7e10f (patch) | |
tree | 3ad4815a22c394f38d0b41e5aa6daba9f1d8bf43 | |
parent | tmux: light color scheme (diff) | |
download | linux-home-b5d6d93bd6a382da8192b3b89ee83a24cda7e10f.tar.gz linux-home-b5d6d93bd6a382da8192b3b89ee83a24cda7e10f.zip |
vim: solarized (light) theme
-rw-r--r-- | %HOME%/.vimrc | 25 |
1 files changed, 4 insertions, 21 deletions
diff --git a/%HOME%/.vimrc b/%HOME%/.vimrc index 8424c2b..cfce770 100644 --- a/%HOME%/.vimrc +++ b/%HOME%/.vimrc @@ -1,7 +1,9 @@ source $VIMRUNTIME/vimrc_example.vim -" Color scheme. -color desert +syntax enable +"set background=dark +set background=light +colorscheme solarized set nowrap " Don't wrap lines. @@ -57,25 +59,6 @@ set secure set ignorecase set smartcase -" White on a bright background, ridiculous! -hi IncSearch ctermfg=0 -hi Search ctermfg=0 - -hi MatchParen ctermfg=0 - -hi Error ctermfg=0 -hi ErrorMsg ctermfg=0 - -hi DiffAdd ctermfg=0 -hi DiffChange ctermfg=0 -hi DiffDelete ctermfg=0 -hi DiffText ctermfg=0 - -hi SpellBad ctermfg=0 -hi SpellCap ctermfg=0 -hi SpellRare ctermfg=0 -hi SpellLocal ctermfg=0 - " Highlight current line. set cursorline "set cursorcolumn |