Skip to content

Commit

Permalink
Fix CursorColumn, ColorColumn & LineNr term color
Browse files Browse the repository at this point in the history
Set background color for CursorColumn, ColorColumn & LineNr to a
different color than the default background color in terminal mode.
  • Loading branch information
fcharlier committed Jun 11, 2013
1 parent 584bdf7 commit 2d49d5e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions colors/molokai.vim
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

" Vim color file
"
" Author: Tomas Restrepo <tomas@winterdom.com>
"
" Note: Based on the monokai theme for textmate
" by Wimer Hazenberg and its darker variant
" by Wimer Hazenberg and its darker variant
" by Hamish Stuart Macpherson
"

Expand Down Expand Up @@ -191,10 +191,10 @@ if &t_Co > 255
hi SignColumn ctermfg=118 ctermbg=235
hi SpecialChar ctermfg=161 cterm=bold
hi SpecialComment ctermfg=245 cterm=bold
hi Special ctermfg=81
hi Special ctermfg=81
if has("spell")
hi SpellBad ctermbg=52
hi SpellCap ctermbg=17
hi SpellBad ctermbg=52
hi SpellCap ctermbg=17
hi SpellLocal ctermbg=17
hi SpellRare ctermfg=none ctermbg=none cterm=reverse
endif
Expand All @@ -218,13 +218,13 @@ if &t_Co > 255
hi WildMenu ctermfg=81 ctermbg=16

hi Comment ctermfg=59
hi CursorColumn ctermbg=234
hi ColorColumn ctermbg=234
hi LineNr ctermfg=250 ctermbg=234
hi CursorColumn ctermbg=236
hi ColorColumn ctermbg=236
hi LineNr ctermfg=250 ctermbg=236
hi NonText ctermfg=59

hi SpecialKey ctermfg=59

if exists("g:rehash256") && g:rehash256 == 1
hi Normal ctermfg=252 ctermbg=234
hi CursorLine ctermbg=236 cterm=none
Expand All @@ -251,7 +251,7 @@ if &t_Co > 255
hi PreCondit ctermfg=154 cterm=bold
hi PreProc ctermfg=154
hi Repeat ctermfg=197 cterm=bold

hi Statement ctermfg=197 cterm=bold
hi Tag ctermfg=197
hi Title ctermfg=203
Expand Down

0 comments on commit 2d49d5e

Please sign in to comment.