Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 33 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ I recommend adjusting your terminal's background color to the one used in Appren

## Installing Apprentice

Colorschemes must be placed in a directory named `colors` that is somewhere in Vims `runtimepath`:
Colorschemes must be placed in a directory named `colors` that is somewhere in Vim's `runtimepath`:

The canonical location is:

Expand All @@ -126,6 +126,38 @@ or:

or whatever works for you.

### Plugin managers

If you use a plugin manager, here are examples for the most common ones:

**vim-plug** `~/.vimrc`:

```vim
Plug 'romainl/Apprentice'
```

**dein.nvim** `~/.vimrc`:

```vim
call dein#add('romainl/Apprentice')
```

**lazy.nvim** `~/.config/nvim/init.lua`:

```lua
require('lazy').setup({
{ 'romainl/Apprentice' },
})
```

**packer.nvim** `~/.config/nvim/lua/plugins.lua`:

```lua
return require('packer').startup(function()
use 'romainl/Apprentice'
end)
```

Arch users may be happy to hear that Apprentice [has landed in AUR](https://aur.archlinux.org/packages/vim-apprentice-git/). To install it, use an AUR helper:

$ yay -S vim-apprentice-git
Expand Down