diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-05-31 13:26:11 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-05-31 13:26:11 +1200 |
commit | 162e27eeb0e30345ec62862a38f08b1c9352a049 (patch) | |
tree | e1578671500faae67cb953ab65bc61c4e6dc1d7f | |
parent | Add spell highlighting (diff) | |
download | vim-sahara-162e27eeb0e30345ec62862a38f08b1c9352a049.tar.gz vim-sahara-162e27eeb0e30345ec62862a38f08b1c9352a049.zip |
Tidyup for re-releasev0.1.0
-rw-r--r-- | colors/sahara.vim | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/colors/sahara.vim b/colors/sahara.vim index c7a213b..c24cb0b 100644 --- a/colors/sahara.vim +++ b/colors/sahara.vim @@ -3,29 +3,24 @@ " removed for clarity. Written by Tom Ryder (tejr). " " <http://vim.wikia.com/wiki/Xterm256_color_names_for_console_Vim> +" <https://sanctum.geek.nz/arabesque/sahara-vim-colorscheme/> " <https://sanctum.geek.nz/> " -" -" Terminal setup. -" +" Terminal setup set background=dark if version > 580 highlight clear - if exists("g:syntax_on") + if exists('g:syntax_on') syntax reset endif endif -let g:colors_name="sahara" +let g:colors_name = 'sahara' -" -" Highlighting definitions. -" -if has("gui_running") || &t_Co == 256 +" Highlighting definitions +if has('gui_running') || &t_Co == 256 - " - " Actual colours and styles. - " + " Actual colours and styles highlight Comment term=NONE cterm=NONE ctermfg=110 ctermbg=NONE gui=NONE guifg=#87afd7 guibg=NONE highlight Constant term=NONE cterm=NONE ctermfg=217 ctermbg=NONE gui=NONE guifg=#ffafaf guibg=NONE highlight Cursor term=NONE cterm=NONE ctermfg=66 ctermbg=222 gui=NONE guifg=#5f8787 guibg=#ffd787 |