Last active
August 29, 2015 14:08
-
-
Save vmattos/7ac06a16ae6a1dd4a897 to your computer and use it in GitHub Desktop.
Favorite vim theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" | |
" Author: Vitor Mattos <[email protected]> | |
" | |
" 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