The Windmill King
The Windmill King

Reputation: 49

sublime text actualvim how to add path to neovim?

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

Answers (1)

Justin M. Keyes
Justin M. Keyes

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

Related Questions