Dark vim colorscheme for the Saturday nights and other *day nights.
The variation of the beautiful Apprentice made by Romain Lafourcade.
There is also Light vim colorscheme for the Friday and other *days.
Follow the instructions plugin manager of choice has.
Or simply put saturnite.vim
into your ~/.vim/colors/
folder.
Add following to your settings file:
augroup colorscheme_change | au!
au ColorScheme saturnite hi Comment gui=italic cterm=italic
augroup END
colorscheme saturnite
Add following to your settings file:
func! s:saturnite_setup() abort
hi Comment gui=italic cterm=italic
hi Statement gui=bold cterm=bold
endfunc
augroup colorscheme_change | au!
au ColorScheme saturnite call s:saturnite_setup()
augroup END
colorscheme saturnite
func! s:saturnite_setup() abort
hi Comment gui=italic cterm=italic
hi Statement gui=bold cterm=bold
hi VertSplit guibg=NONE ctermbg=NONE
endfunc
augroup colorscheme_change | au!
au ColorScheme saturnite call s:saturnite_setup()
augroup END
colorscheme saturnite