summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.vim/colors/jellybeans.vim7
-rw-r--r--.vimrc1
2 files changed, 8 insertions, 0 deletions
diff --git a/.vim/colors/jellybeans.vim b/.vim/colors/jellybeans.vim
index c8f19e4..bc4ce99 100644
--- a/.vim/colors/jellybeans.vim
+++ b/.vim/colors/jellybeans.vim
@@ -392,6 +392,13 @@ call s:X("DiffDelete","40000A","700009","","DarkRed","DarkRed")
call s:X("DiffChange","","00005F","","White","DarkBlue")
call s:X("DiffText","","0000D7","","Yellow","")
+if has("gui_running")
+ call s:X("DiffAdd","","005000","","White","DarkGreen")
+ call s:X("DiffDelete","200000","700009","","DarkRed","DarkRed")
+ call s:X("DiffChange","","000040","","White","DarkBlue")
+ call s:X("DiffText","","0000A0","","Yellow","")
+endif
+
" PHP
hi! link phpFunctions Function
diff --git a/.vimrc b/.vimrc
index 86c4ce4..5ca6192 100644
--- a/.vimrc
+++ b/.vimrc
@@ -241,6 +241,7 @@ autocmd FileType gitcommit autocmd! BufEnter COMMIT_EDITMSG call setpos('.', [0,
" colorscheme
let g:jellybeans_background_color_256 = 'none'
+let g:jellybeans_background_color = '000000'
let g:jellybeans_overrides = {
\ 'SpecialKey': { 'guifg': 'b0b0b0', 'guibg': '000000'}
\}