aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2021-12-07 08:13:25 -0500
committerMarshall Lochbaum <mwlochbaum@gmail.com>2021-12-07 08:13:25 -0500
commitdcf5f8de978c58d7efe74f728bed8f36310239a4 (patch)
tree2d8555add4e66174b682afb7b9e104d8ac06e5ce /editors
parent9ee86c2f45b2fb2fc538062ca0cc2c6a2804ae3b (diff)
Mention the new vim help file in the editor doc
Diffstat (limited to 'editors')
-rw-r--r--editors/README.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/editors/README.md b/editors/README.md
index f2c6c2a3..b11a88dd 100644
--- a/editors/README.md
+++ b/editors/README.md
@@ -47,16 +47,14 @@ Copy or symlink all files into the corresponding directories in `~/.vim`. Add th
au! BufRead,BufNewFile *.bqn setf bqn
au! BufRead,BufNewFile * if getline(1) =~ '^#!.*bqn$' | setf bqn | endif
-Include `syntax on` in your .vimrc for syntax highlighting and `filetype plugin on` for keyboard input.
+Include `syntax on` in your .vimrc for syntax highlighting and `filetype plugin on` for keyboard input. View docs from vim with `:help bqn`.
-To use vim-plug to install BQN support for vim, add this to your plugin section
-of your `.vimrc`:
+To use vim-plug to install BQN support for vim, add this to your plugin section of your `.vimrc`:
Plug 'mlochbaum/BQN', {'rtp': 'editors/vim'}
Then run `:PlugInstall`.
-
### Emacs
Emacs support now lives on [museoa/bqn-mode](https://github.com/museoa/bqn-mode). Clone and add the following two lines to your init file (usually `~/.emacs.d/init.el`), replacing the path appropriately.