Compare commits

...

2 commits

Author SHA1 Message Date
738b7b1976
pin nvim-dap-go 2022-05-18 07:21:18 +01:00
6f56c29456
add nvim-dap and nvim-dap-go 2022-05-18 07:21:12 +01:00
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,7 @@
local ok, dap_go = pcall(require, "dap-go")
if not ok then
return
end
dap_go.setup()

View file

@ -35,4 +35,15 @@ return require("packer").startup(function(use)
config = require("config.bufferline"),
}
use {
"mfussenegger/nvim-dap",
commit = "a9c49a5f9dc21e4e9359c2b7fe30ed3a2f65cd9a", -- 2022-05-14
}
use {
"leoluz/nvim-dap-go",
commit = "fca8bf90bf017e8ecb3a3fb8c3a3c05b60d1406d", -- 2022.02.07
config = require("config.dap-go"),
}
end)