parent
d21059cd59
commit
26147605e2
1 changed files with 22 additions and 14 deletions
36
INSTALL.md
36
INSTALL.md
|
@ -7,32 +7,35 @@ sections below, if you use other plugin managers.
|
||||||
|
|
||||||
1. Create theme folder (in case you don't have yet):
|
1. Create theme folder (in case you don't have yet):
|
||||||
|
|
||||||
|
|
||||||
|
- \*nix:
|
||||||
```
|
```
|
||||||
mkdir -p ~/.vim/pack/themes/start
|
mkdir -p ~/.vim/pack/themes/start
|
||||||
```
|
```
|
||||||
|
|
||||||
If you use vim 8.0 (and not 8.2), you may need to use
|
- Windows: create directory `$HOME\vimfiles\pack\themes\start`
|
||||||
`~/.vim/pack/themes/opt` instead.
|
|
||||||
|
If you use vim 8.0 (and not 8.2), you may need to use `~/.vim/pack/themes/opt`
|
||||||
|
or `$HOME\vimfiles\pack\themes\opt` instead.
|
||||||
|
|
||||||
2. Navigate to the folder above:
|
2. Navigate to the folder above:
|
||||||
|
|
||||||
|
|
||||||
|
- \*nix:
|
||||||
```
|
```
|
||||||
cd ~/.vim/pack/themes/start
|
cd ~/.vim/pack/themes/start
|
||||||
```
|
```
|
||||||
|
|
||||||
|
- Windows: navigate to `$HOME\vimfiles\pack\themes\start`
|
||||||
|
|
||||||
3. Clone the repository using the "dracula" name:
|
3. Clone the repository using the "dracula" name:
|
||||||
|
|
||||||
```
|
```
|
||||||
git clone https://github.com/dracula/vim.git dracula
|
git clone https://github.com/dracula/vim.git dracula
|
||||||
```
|
```
|
||||||
|
(Or use your favorite GUI client, or download the ZIP)
|
||||||
|
|
||||||
4. Create configuration file (in case you don't have yet):
|
5. Edit your `vimrc` file with the following content:
|
||||||
|
|
||||||
```
|
|
||||||
touch ~/.vimrc
|
|
||||||
```
|
|
||||||
|
|
||||||
5. Edit the `~/.vimrc` file with the following content:
|
|
||||||
|
|
||||||
```
|
```
|
||||||
packadd! dracula
|
packadd! dracula
|
||||||
|
@ -40,23 +43,28 @@ syntax enable
|
||||||
colorscheme dracula
|
colorscheme dracula
|
||||||
```
|
```
|
||||||
|
|
||||||
|
The location of the `vimrc` varies between platforms:
|
||||||
|
- \*nix: `~/.vim/vimrc` or `~/.vimrc`
|
||||||
|
- Windows: `$HOME\vimfiles\vimrc` or `$HOME\_vimrc`
|
||||||
|
|
||||||
#### Install using other plugin managers
|
#### Install using other plugin managers
|
||||||
|
|
||||||
If you [use vim + pathogen](http://vimcasts.org/episodes/synchronizing-plugins-with-git-submodules-and-pathogen/):
|
- If you [use vim + pathogen + submodules](http://vimcasts.org/episodes/synchronizing-plugins-with-git-submodules-and-pathogen/):
|
||||||
|
|
||||||
|
Navigate to your vim directory (\*nix: `~/.vim`; Windows: `$HOME\vimfiles`)
|
||||||
|
|
||||||
cd ~/.vim
|
|
||||||
git submodule add git@github.com:dracula/vim.git bundle/dracula
|
git submodule add git@github.com:dracula/vim.git bundle/dracula
|
||||||
|
|
||||||
Place `colorscheme dracula` after `execute pathogen#infect()`.
|
Place `colorscheme dracula` after `execute pathogen#infect()`.
|
||||||
|
|
||||||
If you [use vim + vundle](https://github.com/VundleVim/Vundle):
|
- If you [use vim + vundle](https://github.com/VundleVim/Vundle):
|
||||||
|
|
||||||
Plugin 'dracula/vim', { 'name': 'dracula' }
|
Plugin 'dracula/vim', { 'name': 'dracula' }
|
||||||
:PluginInstall
|
:PluginInstall
|
||||||
|
|
||||||
Place `colorscheme dracula` after `call vundle#end()`.
|
Place `colorscheme dracula` after `call vundle#end()`.
|
||||||
|
|
||||||
If you [use vim-plug](https://github.com/junegunn/vim-plug) (\`as\` will install
|
- If you [use vim-plug](https://github.com/junegunn/vim-plug) (\`as\` will install
|
||||||
the plugin in a directory called 'dracula' instead of just 'vim'):
|
the plugin in a directory called 'dracula' instead of just 'vim'):
|
||||||
|
|
||||||
Plug 'dracula/vim', { 'as': 'dracula' }
|
Plug 'dracula/vim', { 'as': 'dracula' }
|
||||||
|
@ -64,7 +72,7 @@ the plugin in a directory called 'dracula' instead of just 'vim'):
|
||||||
|
|
||||||
Place `colorscheme dracula` after `call plug#end()`.
|
Place `colorscheme dracula` after `call plug#end()`.
|
||||||
|
|
||||||
If you [use spacevim](https://spacevim.org), put the
|
- If you [use spacevim](https://spacevim.org), put the
|
||||||
following in `~/.SpaceVim.d/init.toml`:
|
following in `~/.SpaceVim.d/init.toml`:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
|
|
Loading…
Reference in a new issue