mirror of
https://github.com/whatyouhide/vim-gotham.git
synced 2026-09-10 07:26:17 -04:00
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:
parent
a461ff0ed5
commit
eba6e60bbf
|
|
@ -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 ==========================================
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in a new issue