Light vim colorscheme for the Friday and other *days.
Follow the instructions plugin manager of choice has.
Or simply put freyeday.vim
into your ~/.vim/colors/
folder.
Add following to your settings file:
augroup colorscheme_change | au!
au ColorScheme freyeday hi Comment gui=italic cterm=italic
augroup END
colorscheme freyeday
Add following to your settings file:
func! s:freyeday_setup() abort
hi Comment gui=italic cterm=italic
hi Statement gui=bold cterm=bold
endfunc
augroup colorscheme_change | au!
au ColorScheme freyeday call s:freyeday_setup()
augroup END
colorscheme freyeday
func! s:freyeday_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 freyeday call s:freyeday_setup()
augroup END
colorscheme freyeday