~craftyguy/vim-better-colors-plain

38067b21b5d6b3e998281b44e06629c6698666f1 — Clayton Craft 3 months ago 748ebe4
Minor refactoring

Sorts some things, and changes definitions of some other things to be
more generic. Should have no functional changes
1 files changed, 12 insertions(+), 9 deletions(-)

M colors/better-plain.vim
M colors/better-plain.vim => colors/better-plain.vim +12 -9
@@ 83,11 83,11 @@ else
    hi! link Cursor       Identifier
endif
hi! link Identifier       Normal
hi! link Function         Identifier
hi! link Function         Special
hi! link Type             Normal

hi! link StorageClass     Type
hi! link Structure        Type
hi! link Typedef          Type
hi! link Special          Normal
hi! link SpecialChar      Special
hi! link Tag              Special


@@ 113,22 113,25 @@ call s:h("Comment",       {"fg": s:comment, "gui": "italic"})

" __Constant__
call s:h("Constant",      {"fg": s:constant})
hi! link Character        Constant
hi! link Number           Constant
hi! link Boolean          Constant
hi! link Character        Constant
hi! link Directory        Constant
hi! link Float            Constant
hi! link Number           Constant
hi! link String           Constant
hi! link Directory        Constant
hi! link Title            Constant
hi! link Type             Constant
hi! link Typedef          Constant

" __Statement__
call s:h("Statement",     {"fg": s:norm, "gui": "bold"})
hi! link Include          Statement
hi! link Conditonal       Statement
hi! link Repeat           Statement
hi! link Label            Statement
hi! link Keyword          Statement
hi! link Exception        Statement
hi! link Include          Statement
hi! link Keyword          Statement
hi! link Label            Statement
hi! link Repeat           Statement
hi! link Variable         Statement

" __ErrorMsg__
call s:h("ErrorMsg",      {"fg": s:error})