dracula.txt 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. *dracula.txt* For Vim version 8 Last change: 2018 May 08
  2. *dracula* *vim-dracula*
  3. |\ ,, ~
  4. \\ _ || _ ~
  5. / \\ ,._-_ < \, _-_ \\ \\ || < \, ~
  6. || || || /-|| || || || || /-|| ~
  7. || || || (( || || || || || (( || ~
  8. \\/ \\, \/\\ \\,/ \\/\\ \\ \/\\ ~
  9. A dark theme for vim
  10. ==============================================================================
  11. CONTENTS *dracula-contents*
  12. 1. Intro ................................................... |dracula-intro|
  13. 2. Usage ................................................... |dracula-usage|
  14. 3. Configuration ................................... |dracula-configuration|
  15. 4. Personal Customization .......................... |dracula-customization|
  16. 5. License ............................................... |dracula-license|
  17. 6. Bugs ..................................................... |dracula-bugs|
  18. 7. Contributing ..................................... |dracula-contributing|
  19. 8. Credits ............................................... |dracula-credits|
  20. ==============================================================================
  21. INTRO *dracula-intro*
  22. Dracula is a vim plugin that contains
  23. - a dark colorscheme for vim
  24. - a similarly-themed colorscheme for the vim plugin airline
  25. (https://github.com/vim-airline/vim-airline)
  26. ==============================================================================
  27. USAGE *dracula-usage*
  28. Install it with your favorite plugin manager, and then >
  29. colorscheme dracula
  30. in your vimrc !
  31. If you are an airline user, you can also do >
  32. let g:airline_theme='dracula'
  33. to have airline use Dracula.
  34. ==============================================================================
  35. CONFIGURATION *dracula-configuration*
  36. There are a couple of variables used by Dracula that you might want to adjust
  37. depending on your terminal's capabilities.
  38. Default values are shown.
  39. ------------------------------------------------------------------------------
  40. In the following section, `1` signifies `on` and `0` signifies `off`.
  41. * *g:dracula_bold*
  42. Include bold attributes in highlighting >
  43. let g:dracula_bold = 1
  44. <
  45. * *g:dracula_italic*
  46. Include italic attributes in highlighting >
  47. let g:dracula_italic = 1
  48. <
  49. * *g:dracula_underline*
  50. Include underline attributes in highlighting >
  51. let g:dracula_underline = 1
  52. <
  53. * *g:dracula_undercurl*
  54. Include undercurl attributes in highlighting (only if underline enabled) >
  55. let g:dracula_undercurl = 1
  56. <
  57. * *g:dracula_inverse*
  58. Include inverse attributes in highlighting >
  59. let g:dracula_inverse = 1
  60. * *g:dracula_colorterm*
  61. Include background fill colors >
  62. let g:dracula_colorterm = 1
  63. ==============================================================================
  64. CUSTOMIZATION *dracula-customization*
  65. Like all colorschemes, Dracula is easy to customize with |autocmd|. Make use
  66. of the |ColorScheme| event as in the following examples.
  67. It would be a good idea to put all of your personal changes in an |augroup|,
  68. which you can do with the following code: >
  69. augroup dracula_customization
  70. au!
  71. " autocmds...
  72. augroup END
  73. >
  74. - To add underline styling to |hl-CursorLine|, you can use the following: >
  75. autocmd ColorScheme dracula hi CursorLine cterm=underline term=underline
  76. <
  77. ==============================================================================
  78. LICENSE *dracula-license*
  79. MIT License. Copyright © 2016 Dracula Theme.
  80. Full text available at
  81. https://github.com/dracula/vim/blob/master/LICENSE
  82. ==============================================================================
  83. BUGS *dracula-bugs*
  84. At the time of this writing, no major bugs have been found.
  85. If you find one and wish to report it, you can do so at
  86. https://github.com/dracula/vim/issues
  87. ==============================================================================
  88. CONTRIBUTING *dracula-contributing*
  89. Want to submit a new feature, bugfix, or hack on Dracula?
  90. Submit pull requests to
  91. https://github.com/dracula/vim/pulls
  92. Existing code determines style guidelines.
  93. ==============================================================================
  94. CREDITS *dracula-credits*
  95. Proudly built by the Dracula Theme organization
  96. https://github.com/dracula
  97. Dracula for other applications available at
  98. https://draculatheme.com
  99. Further information available at
  100. https://draculatheme.com/vim
  101. Maintained by:
  102. - Trevor Heins ( https://github.com/heinst )
  103. - Blake Williams ( https://github.com/BlakeWilliams )
  104. - Derek S. ( https://github.com/dsifford )
  105. Git repository:
  106. https://github.com/dracula/vim
  107. vim:tw=78:ts=8:ft=help:norl: