Document solutions to errors caused by 'rtp' (#142)

This commit is contained in:
D. Ben Knoble 2019-06-02 22:52:03 +01:00 committed by Derek Sifford
parent f90b5825db
commit a4f6b0abe6
2 changed files with 23 additions and 1 deletions

View file

@ -9,6 +9,16 @@
All instructions can be found at
[draculatheme.com/vim](https://draculatheme.com/vim).
Note that dracula must be in your `'runtimepath'` to load properly: Version 2.0
introduced autoload functionality for part of the plugin, which doesn't work
without `'runtimepath'` properly set.
For users of Vim 8's `|packages|` feature, it suffices to put
packadd! dracula
colorscheme dracula
in your vimrc. For users of other plugin managers, consult your documentation
to make sure you put dracula on the `'runtimepath'` before loading it.
## Team
This theme is maintained by the following person(s) and a bunch of

View file

@ -36,12 +36,24 @@ USAGE *dracula-usage*
Install it with your favorite plugin manager, and then >
colorscheme dracula
in your vimrc !
in your vimrc! See also |dracula_runtimepath|.
If you are an airline user, you can also do >
let g:airline_theme='dracula'
to have airline use Dracula.
*dracula_runtimepath*
Note that dracula must be in your 'runtimepath' for this command to work
properly: Version 2.0 introduced autoload functionality for part of the
plugin, which doesn't work without 'runtimepath' properly set.
For users of Vim 8's |packages| feature, it suffices to put >
packadd! dracula
colorscheme dracula
in your vimrc. For users of other plugin managers, consult your documentation
to make sure you put dracula on the 'runtimepath' before loading it.
==============================================================================
CONFIGURATION *dracula-configuration*