diff options
author | Christian Chiarulli <[email protected]> | 2020-05-09 00:41:52 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2020-05-09 00:41:52 -0400 |
commit | 990a0b998c5446dade6593b7415172ee8859d2e0 (patch) | |
tree | 393a9d88a8f69a8217212c721cedfc9158374071 | |
parent | 481d63b57e524553e6cb2624288afb160e359db7 (diff) | |
parent | c875ad307353b23cb2cf9de3ef315ca94c758337 (diff) |
Merge pull request #6 from Petka17/node-path-fix
fix path to the neovim node executable
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -63,7 +63,7 @@ let g:python3_host_prog = expand("<path to python with pynvim installed>") let g:python3_host_prog = expand("~/.miniconda/envs/neovim/bin/python3.8") " <- example let g:node_host_prog = expand("<path to node with neovim installed>") -let g:node_host_prog = expand("~/.nvm/versions/node/v12.16.1/bin/node") " <- example +let g:node_host_prog = expand("~/.nvm/versions/node/v12.16.1/bin/neovim-node-host") " <- example ``` ## List of programs you should install |