Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add molokai_vte option #62

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion colors/molokai.vim
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ else
let s:molokai_original = 0
endif

if exists("g:molokai_vte")
let s:molokai_vte = g:molokai_vte
else
let s:molokai_vte = 0
endif


hi Boolean guifg=#AE81FF
hi Character guifg=#E6DB74
Expand Down Expand Up @@ -177,7 +183,11 @@ if &t_Co > 255
hi Macro ctermfg=193
hi SpecialKey ctermfg=81

hi MatchParen ctermfg=233 ctermbg=208 cterm=bold
if s:molokai_vte == 1
hi MatchParen ctermfg=208 ctermbg=233 cterm=bold
else
hi MatchParen ctermfg=233 ctermbg=208 cterm=bold
endif
hi ModeMsg ctermfg=229
hi MoreMsg ctermfg=229
hi Operator ctermfg=161
Expand Down