Skip to content

Commit

Permalink
Merge pull request tomasr#13 from rwmpelstilzchen/master
Browse files Browse the repository at this point in the history
Support for CursorLineNr
  • Loading branch information
tomasr committed Jun 17, 2013
2 parents 584bdf7 + d9d711b commit 5d2adba
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion colors/molokai.vim
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ if s:molokai_original == 1
hi Normal guifg=#F8F8F2 guibg=#272822
hi Comment guifg=#75715E
hi CursorLine guibg=#3E3D32
hi CursorLineNr guifg=#FD971F gui=none
hi CursorColumn guibg=#3E3D32
hi ColorColumn guibg=#3B3A32
hi LineNr guifg=#BCBCBC guibg=#3B3A32
Expand All @@ -119,6 +120,7 @@ else
hi Normal guifg=#F8F8F2 guibg=#1B1D1E
hi Comment guifg=#7E8E91
hi CursorLine guibg=#293739
hi CursorLineNr guifg=#FD971F gui=none
hi CursorColumn guibg=#293739
hi ColorColumn guibg=#232526
hi LineNr guifg=#465457 guibg=#232526
Expand All @@ -133,9 +135,11 @@ if &t_Co > 255
if s:molokai_original == 1
hi Normal ctermbg=234
hi CursorLine ctermbg=235 cterm=none
hi CursorLineNr ctermfg=208 cterm=none
else
hi Normal ctermfg=252 ctermbg=233
hi CursorLine ctermbg=234 cterm=none
hi CursorLineNr ctermfg=208 cterm=none
endif
hi Boolean ctermfg=135
hi Character ctermfg=144
Expand Down Expand Up @@ -228,7 +232,7 @@ if &t_Co > 255
if exists("g:rehash256") && g:rehash256 == 1
hi Normal ctermfg=252 ctermbg=234
hi CursorLine ctermbg=236 cterm=none
hi CursorLineNr ctermfg=226
hi CursorLineNr ctermfg=208 cterm=none

hi Boolean ctermfg=141
hi Character ctermfg=222
Expand Down

0 comments on commit 5d2adba

Please sign in to comment.