Hello,
If I manually run nvim-ghost-binary the server runs and everything works as expected. However, whenever I launch neovim and load nvim-ghost I get error message "could not connect to localhost:4001". When I debugged I figured out:
echo g:nvim_ghost_installation_dir returns the correct installation path but nvim_ghost_binary_path returns the empty string. When I attempted to manually set nvim_ghost_binary_path to the path of binary file, I would still get an empty string. Any other string can be set to nvim_ghost_binary_path.
In my init.lua I have
vim.g.nvim_ghost_binary_path = "/home/touny/.local/share/nvim/lazy/nvim-ghost.nvim/nvim-ghost-binary"
and echo g:nvim_ghost_binary_path returns the empty string.
Hello,
If I manually run
nvim-ghost-binarythe server runs and everything works as expected. However, whenever I launch neovim and loadnvim-ghostI get error message "could not connect to localhost:4001". When I debugged I figured out:echo g:nvim_ghost_installation_dirreturns the correct installation path butnvim_ghost_binary_pathreturns the empty string. When I attempted to manually setnvim_ghost_binary_pathto the path of binary file, I would still get an empty string. Any other string can be set tonvim_ghost_binary_path.In my
init.luaI havevim.g.nvim_ghost_binary_path = "/home/touny/.local/share/nvim/lazy/nvim-ghost.nvim/nvim-ghost-binary"and
echo g:nvim_ghost_binary_pathreturns the empty string.