Closed TornaxO7 closed 3 years ago
I also noticed that my ~/Apps/nvim-dap/
directory is empty. Is that normal?
~
is a shortcut for $HOME
, which is a system variable, and DAPInstall can't read system variables (although I think it might be possible through a luarock). If you want to specify the path to a directory under your $HOME
then you could:
/home/pocco81/Apps/nvim-dap/
$HOME
var like so:local dap_install = require("dap-install")
dap_install.setup({
installation_path = vim.api.nvim_eval('$HOME') .. "Apps/nvim-dap/", -- this
verbosely_call_debuggers = false,
})
I'm veeeery irritated how to setup this plugin.
Why? :(
Yeah it works now! Thank you :)
I'm veeeery irritated how to setup this plugin.
It was because it didn't work. Thank you for simplifying the debugging process with this plugin :)
Hello! I'm sorry, but I'm veeeery irritated how to setup this plugin.
If I start
nvim-dap
, then I'm getting the following error messages:Reproduction steps
Here are my settings:
~/.config/nvim/init.vim
:~/.config/nvim/plugins/dap.vim
:~/.config/nvim/lua/dap.lua
:~/.config/nvim/lua/dapinstall.lua
I already did
:DIInstall python_dbg
but it still says that I can't use the python debugger.