diff options
author | Petr Klimenko <[email protected]> | 2020-05-08 20:26:32 +0300 |
---|---|---|
committer | Petr Klimenko <[email protected]> | 2020-05-08 20:26:32 +0300 |
commit | c875ad307353b23cb2cf9de3ef315ca94c758337 (patch) | |
tree | 427e9480810a28907bdc6f4451564075b12a93c5 | |
parent | b5f4a43775e9923b22b74d60b104cf53e0217767 (diff) |
fix path to the 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 |