dracula.vim 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. if dracula#should_abort()
  2. finish
  3. endif
  4. " Fzf: {{{
  5. if exists('g:loaded_fzf') && ! exists('g:fzf_colors')
  6. let g:fzf_colors = {
  7. \ 'fg': ['fg', 'Normal'],
  8. \ 'bg': ['bg', 'Normal'],
  9. \ 'hl': ['fg', 'Search'],
  10. \ 'fg+': ['fg', 'Normal'],
  11. \ 'bg+': ['bg', 'Normal'],
  12. \ 'hl+': ['fg', 'DraculaOrange'],
  13. \ 'info': ['fg', 'DraculaPurple'],
  14. \ 'border': ['fg', 'Ignore'],
  15. \ 'prompt': ['fg', 'DraculaGreen'],
  16. \ 'pointer': ['fg', 'Exception'],
  17. \ 'marker': ['fg', 'Keyword'],
  18. \ 'spinner': ['fg', 'Label'],
  19. \ 'header': ['fg', 'Comment'] }
  20. endif
  21. "}}}
  22. " GitGutter: {{{
  23. " FIXME: This can be removed once airblade/vim-gitgutter#520 closes
  24. " see: https://github.com/airblade/vim-gitgutter/issues/520#issuecomment-389931281
  25. if exists('g:gitgutter_enabled')
  26. hi! link GitGutterAdd DraculaGreen
  27. hi! link GitGutterChange DraculaYellow
  28. hi! link GitGutterChangeDelete DraculaOrange
  29. hi! link GitGutterDelete DraculaRed
  30. endif
  31. "}}}
  32. " vim: fdm=marker ts=2 sts=2 sw=2: