aboutsummaryrefslogtreecommitdiffhomepage
path: root/editors/vim/README.md
diff options
context:
space:
mode:
authorMarvin Borner2022-06-30 20:36:37 +0200
committerMarvin Borner2022-06-30 20:36:37 +0200
commit269a7832ece9c1997d0431c41d04e91d46813a96 (patch)
tree690f0c7a5441d02df4a0bebb040ed2a091c729dd /editors/vim/README.md
parent9d8efb7dfa56576c779244af633481ee7e986060 (diff)
Very basic syntax highlighting
Diffstat (limited to 'editors/vim/README.md')
-rw-r--r--editors/vim/README.md17
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`