Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

add syntastic error/warning signs #46

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
11 changes: 11 additions & 0 deletions colors/molokai.vim
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,13 @@ hi PreProc guifg=#A6E22E
hi Question guifg=#66D9EF
hi Repeat guifg=#F92672 gui=bold
hi Search guifg=#000000 guibg=#FFE792

" marks
hi SyntasticErrorSign guifg=#F92672 guibg=#232526
hi SyntasticWarningSign guifg=#E6DB74 guibg=#232526
hi NeomakeErrorSign guifg=#F92672 guibg=#232526
hi NeomakeWarningSign guifg=#E6DB74 guibg=#232526

hi SignColumn guifg=#A6E22E guibg=#232526
hi SpecialChar guifg=#F92672 gui=bold
hi SpecialComment guifg=#7E8E91 gui=bold
Expand Down Expand Up @@ -195,6 +201,11 @@ if &t_Co > 255
hi Search ctermfg=0 ctermbg=222 cterm=NONE

" marks column
hi SyntasticErrorSign ctermfg=161 ctermbg=235
hi SyntasticWarningSign ctermfg=144 ctermbg=235
hi NeomakeErrorSign ctermfg=161 ctermbg=235
hi NeomakeWarningSign ctermfg=144 ctermbg=235

hi SignColumn ctermfg=118 ctermbg=235
hi SpecialChar ctermfg=161 cterm=bold
hi SpecialComment ctermfg=245 cterm=bold
Expand Down