/vim-saturnite

Dark vim colorscheme for the Saturday nights and other *day nights.

Primary LanguageVim Script

Saturnite: Dark vim colorscheme

Dark vim colorscheme for the Saturday nights and other *day nights.

The variation of the beautiful Apprentice made by Romain Lafourcade.

Screens

113099505 ba698700 9202 11eb 969b 3042cb5e2497
113099947 69a65e00 9203 11eb 9d0e 4294232162bb
113104206 ee47ab00 9208 11eb 845c c75b413c43b7

Installation

Follow the instructions plugin manager of choice has.

Or simply put saturnite.vim into your ~/.vim/colors/ folder.

Looks good but I want italic comments

Add following to your settings file:

augroup colorscheme_change | au!
    au ColorScheme saturnite hi Comment gui=italic cterm=italic
augroup END

colorscheme saturnite

And bold statements

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

And VertSplit without background colors

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

I want my terminal background

If you would like NOT to override your terminal background color — make Normal background NONE:

augroup colorscheme_change | au!
    au ColorScheme saturnite hi Normal ctermbg=NONE
augroup END

colorscheme saturnite