From 26147605e291fc78fad672025d14a63445067659 Mon Sep 17 00:00:00 2001 From: "D. Ben Knoble" Date: Wed, 19 May 2021 12:36:14 -0400 Subject: [PATCH 1/2] update installation instructions for other OS closes #224 --- INSTALL.md | 36 ++++++++++++++++++++++-------------- 1 file changed, 22 insertions(+), 14 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 309efe9..34f430c 100644 --- a/INSTALL.md +++ b/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): + +- \*nix: ``` mkdir -p ~/.vim/pack/themes/start ``` -If you use vim 8.0 (and not 8.2), you may need to use -`~/.vim/pack/themes/opt` instead. +- Windows: create directory `$HOME\vimfiles\pack\themes\start` + +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: + +- \*nix: ``` cd ~/.vim/pack/themes/start ``` +- Windows: navigate to `$HOME\vimfiles\pack\themes\start` + 3. Clone the repository using the "dracula" name: ``` 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): - -``` -touch ~/.vimrc -``` - -5. Edit the `~/.vimrc` file with the following content: +5. Edit your `vimrc` file with the following content: ``` packadd! dracula @@ -40,23 +43,28 @@ syntax enable 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 -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 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' } :PluginInstall 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'): 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()`. -If you [use spacevim](https://spacevim.org), put the +- If you [use spacevim](https://spacevim.org), put the following in `~/.SpaceVim.d/init.toml`: ```toml From 428e8d69b61713a3dcff8e3283ff0f1f487c209c Mon Sep 17 00:00:00 2001 From: "D. Ben Knoble" Date: Wed, 19 May 2021 12:37:44 -0400 Subject: [PATCH 2/2] fix numbering --- INSTALL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index 34f430c..5fb2210 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -35,7 +35,7 @@ git clone https://github.com/dracula/vim.git dracula ``` (Or use your favorite GUI client, or download the ZIP) -5. Edit your `vimrc` file with the following content: +4. Edit your `vimrc` file with the following content: ``` packadd! dracula