Skip to content

Instantly share code, notes, and snippets.

@vmattos
Last active August 29, 2015 14:08
Show Gist options
  • Save vmattos/7ac06a16ae6a1dd4a897 to your computer and use it in GitHub Desktop.
Save vmattos/7ac06a16ae6a1dd4a897 to your computer and use it in GitHub Desktop.
Favorite vim theme
"
" Author: Vitor Mattos <mattos.trk@gmail.com>
"
" My favorite VIM theme
" Based on Lucario: https://github.com/raphamorim/lucario
"
"
set t_Co=256
hi Visual ctermfg=NONE ctermbg=4 cterm=NONE guifg=NONE guibg=#19242f gui=NONE
hi CursorLine ctermfg=NONE ctermbg=236 cterm=NONE guifg=NONE guibg=#405160 gui=NONE
hi LineNr ctermfg=239 ctermbg=235
hi VertSplit ctermfg=65 ctermbg=none
hi MatchParen ctermfg=203 ctermbg=NONE cterm=underline guifg=#ff6541 guibg=NONE gui=underline
hi StatusLine ctermfg=231 ctermbg=4 cterm=bold guifg=#f8f8f2 guibg=#66747f gui=bold
hi StatusLine ctermfg=130 ctermbg=236
hi StatusLineNC ctermbg=1 ctermfg=235
hi Normal ctermfg=231 ctermbg=233 cterm=NONE guifg=#f8f8f2 guibg=#2b3e50 gui=NONE
" Changes status bar color when in Insert mode
au InsertEnter * hi StatusLine ctermfg=236 ctermbg=130
au InsertLeave * hi StatusLine ctermfg=130 ctermbg=236
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment