From 56cebd3437bcadb5f93da1cb5bcaafe91bbc2d89 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Sat, 14 Mar 2026 13:17:45 -0700 Subject: [PATCH] Add Neovim plugin documentation --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index 8ab164e..e49ef68 100644 --- a/README.md +++ b/README.md @@ -148,3 +148,25 @@ Print an example `.shout` file: ``` $ shout example ``` + +## Editor Support + +### Neovim + +The `vim/` directory contains a Neovim plugin with syntax highlighting and commands (`:ShoutRun`, `:ShoutUpdate`, `:ShoutRunAll`). + +#### lazy.nvim + +```lua +{ + dir = "~/path/to/shout/vim", + ft = "shout", +} +``` + +#### Manual + +```sh +mkdir -p ~/.local/share/nvim/site/pack/shout/start +ln -s /path/to/shout/vim ~/.local/share/nvim/site/pack/shout/start/shout +```