diff --git a/dot_config/nvim/lua/configs/packages/dap.lua b/dot_config/nvim/lua/configs/packages/dap.lua index 2f4d08f..041160e 100644 --- a/dot_config/nvim/lua/configs/packages/dap.lua +++ b/dot_config/nvim/lua/configs/packages/dap.lua @@ -15,7 +15,7 @@ return { end end, dependencies = { - { 'rcarriga/nvim-dap-ui', dependencies = 'nvim-neotest/nvim-nio' }, + { 'rcarriga/nvim-dap-ui', dependencies = { 'nvim-neotest/nvim-nio' } }, 'williamboman/mason.nvim', }, keys = { @@ -64,7 +64,23 @@ return { port = 9000, }, }, - }, -- }}} + }, -- }}} + dockerfile = { -- {{{ + adapter = { + type = 'executable', + command = 'buildg', + args = { 'dap', 'serve' }, + }, + confs = { + { + type = 'dockerfile', + name = 'Dockerfile configuration', + request = 'launch', + stopOnEntry = true, + program = 'file', + }, + }, + }, --- }}} }, config = function(_plug, opts) -- signs - move to colorsheme? {{{