Reputation: 49
I want to try out the actualvim plugin for sublime, but I can't figure out how to add the path to neovim. And the page instruction never explained how to.
Upvotes: 1
Views: 1576
Reputation: 6964
The readme does not mention the setting name, but the code reveals a neovim_path
setting.
In Sublime's menu, go to Preferences -> Package Settings -> ActualVim Settings
and set the neovim_path
key to the full nvim
path:
"neovim_path": "/path/to/nvim"
If you're on Windows, use /
slashes (not \
), or you will need to escape the slashes, e.g.:
"neovim_path": "C:\\path\\to\\nvim.exe"
Upvotes: 2