diff options
author | Marvin Borner | 2022-06-30 20:36:37 +0200 |
---|---|---|
committer | Marvin Borner | 2022-06-30 20:36:37 +0200 |
commit | 269a7832ece9c1997d0431c41d04e91d46813a96 (patch) | |
tree | 690f0c7a5441d02df4a0bebb040ed2a091c729dd /editors/vim/README.md | |
parent | 9d8efb7dfa56576c779244af633481ee7e986060 (diff) |
Very basic syntax highlighting
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` |