neovim/after/ftplugin/go.lua
Oliver Ladner aa0f1fbd92 after/ftplugin instead of autocmd
Use after/ftplugin instead of autocmds to handle options depending on
filetype
2024-05-17 15:24:50 +02:00

3 lines
97 B
Lua

vim.keymap.set("n", "<space>td", function()
require("dap-go").debug_test()
end, { buffer = 0 })