soulver3.vim lets you use vim / neovim as a front end to Soulver 3
-
Install Soulver from the official website
-
Check if you have the CLI binary of Soulver, by default it's at:
/Applications/Soulver\ 3.app/Contents/MacOS/CLI/soulver
If you don't find there or somewhere on your system follow this guide to install it
- Install soulver3.vim with your favorite plugin manager
Plug 'Yohannfra/soulver3.vim'
If your CLI binary of Soulver is not in the default location, you can change it with:
let g:soulver_cli_path = "path/to/your/soulver/cli"
By default g:soulver_update_on_save == 1 you can set it to 0 to not update Soulver view on save with
let g:soulver_update_on_save = 0
- Create a file and run :SoulverLiveOn to start Soulver mode
- type in all the things you would usually with the regular Soulver app
- To end the session type :SoulverLiveOff
- Create a file with the .soulver extension and type in all the things you would usually with the regular Soulver app
- call :Soulver to show the result of what you wrote or save (with g:soulver_update_on_save==1)
Thanks to the Soulver team for providing a CLI :)