diff options
Diffstat (limited to 'editors/vim/README.md')
-rw-r--r-- | editors/vim/README.md | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/editors/vim/README.md b/editors/vim/README.md new file mode 100644 index 0000000..1b254ef --- /dev/null +++ b/editors/vim/README.md @@ -0,0 +1,17 @@ +# Vim syntax highlighting + +## Install manually + +Copy or symlink this directory to your vim plugins directory, e.g. using +the following command inside this directory: + + mkdir -p $HOME/.vim/pack/plugins/start/ + ln -s $PWD $HOME/.vim/pack/plugins/start/bruijn + +## Install with a plugin manager + +In this example using vim-plug (others should work similarly): + +1. Add `Plug 'marvinborner/bruijn', { 'rtp': 'editors/vim' }` to your + `.vimrc` +2. Run `:PlugInstall` |