scriptencoding utf-8 if exists('b:current_syntax') finish endif " Ref: https://github.com/w0ng/vim-hybrid let s:GUI_COLORS = [ \ '#282A2E', '#A54242', '#8C9440', '#DE935F', \ '#5F819D', '#85678F', '#5E8D87', '#707880', \ '#373B41', '#CC6666', '#B5BD68', '#F0C674', \ '#81A2BE', '#B294BB', '#8ABEB7', '#C5C8C6', \] let s:TERM_COLORS = [ \ 0, 1, 2, 3, 4, 5, 6, 7, \ 8, 9, 10, 11, 12, 13, 14, 15, \] syntax match GinaBlameBase /.*/ display syntax match GinaBlameSummary /^.*\ze\ autocmd ColorScheme * call s:define_highlights() augroup END call s:define_highlights() let b:current_syntax = 'gina-blame'