Add some highlight groups and fix some minor bugs

Close #6

- I highlighted the 'Directory' group
- I gave the 'Cursor' group a foreground color because, without one, Normal fg
  would be the same as Cursor bg, causing the text to be invisible (only in GUI)
  vim
This commit is contained in:
Andrea Leopardi 2014-10-07 10:14:42 +02:00
parent a461ff0ed5
commit eba6e60bbf
2 changed files with 6 additions and 3 deletions

View file

@ -7,7 +7,7 @@
"
" URL: https://github.com/whatyouhide/vim-gotham
" Aurhor: Andrea Leopardi <an.leopardi@gmail.com>
" Version: ϡ
" Version: 1.0.0
" License: MIT
@ -97,7 +97,7 @@ let s:linenr_background = 'base1'
call s:Col('Normal', 'base6', s:background)
" Line, cursor and so on.
call s:Col('Cursor', '', 'base6')
call s:Col('Cursor', 'base1', 'base6')
call s:Col('CursorLine', '', 'base1')
" Sign column, line numbers.
@ -192,6 +192,9 @@ call s:Col('DiffChange', 'cyan')
call s:Col('DiffDelete', 'red')
call s:Col('DiffText', 'yellow')
" Directories (e.g. netrw).
call s:Col('Directory', 'cyan')
" Programming languages and filetypes ==========================================

View file

@ -97,7 +97,7 @@ let s:linenr_background = 'base1'
call s:Col('Normal', 'base6', s:background)
" Line, cursor and so on.
call s:Col('Cursor', '', 'base6')
call s:Col('Cursor', 'base1', 'base6')
call s:Col('CursorLine', '', 'base1')
" Sign column, line numbers.