dracula-vim/after/plugin/dracula.vim

49 lines
1.3 KiB
VimL
Raw Normal View History

if dracula#should_abort()
finish
endif
2018-04-22 22:47:04 +00:00
" Fzf: {{{
if exists('g:loaded_fzf') && ! exists('g:fzf_colors')
let g:fzf_colors = {
\ 'fg': ['fg', 'Normal'],
\ 'bg': ['bg', 'Normal'],
\ 'hl': ['fg', 'Search'],
\ 'fg+': ['fg', 'Normal'],
\ 'bg+': ['bg', 'Normal'],
\ 'hl+': ['fg', 'DraculaOrange'],
\ 'info': ['fg', 'DraculaPurple'],
\ 'border': ['fg', 'Ignore'],
\ 'prompt': ['fg', 'DraculaGreen'],
\ 'pointer': ['fg', 'Exception'],
\ 'marker': ['fg', 'Keyword'],
\ 'spinner': ['fg', 'Label'],
\ 'header': ['fg', 'Comment'] }
endif
"}}}
" GitGutter: {{{
" FIXME: This can be removed once airblade/vim-gitgutter#520 closes
" see: https://github.com/airblade/vim-gitgutter/issues/520#issuecomment-389931281
if exists('g:gitgutter_enabled')
hi! link GitGutterAdd DraculaGreen
hi! link GitGutterChange DraculaYellow
hi! link GitGutterChangeDelete DraculaOrange
hi! link GitGutterDelete DraculaRed
endif
2018-04-22 22:47:04 +00:00
"}}}
" ALE: {{{
if exists('g:ale_enabled')
hi! link ALEError DraculaErrorLine
hi! link ALEWarning DraculaWarningLine
hi! link ALEInfo DraculaInfoLine
hi! link ALEErrorSign DraculaError
hi! link ALEWarningSign DraculaWarning
hi! link ALEInfoSign DraculaInfo
endif
" }}}
2018-04-22 22:47:04 +00:00
" vim: fdm=marker ts=2 sts=2 sw=2: