let g:coc_node_path = "$HOME/custom/node/bin/node"
let g:coc_node_path = "~/custom/node/bin/node"
let g:coc_node_path = "\~/custom/node/bin/node"
Also, it probably would make sense to have some variable to indicate node bin folder instead of setting node and npm separetly (smth like g:coc_node_bin)
I'm trying to use custom node/npm binaries located in my home directory. Somehow cocnvim can't recognize ~ as home, so I have to concat $HOME
this works
this will not work
Also, it probably would make sense to have some variable to indicate node bin folder instead of setting node and npm separetly (smth like g:coc_node_bin)