aboutsummaryrefslogtreecommitdiff
path: root/lua/gabrielgio/dap.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/gabrielgio/dap.lua')
-rw-r--r--lua/gabrielgio/dap.lua28
1 files changed, 14 insertions, 14 deletions
diff --git a/lua/gabrielgio/dap.lua b/lua/gabrielgio/dap.lua
index 238a1bc..c5f316b 100644
--- a/lua/gabrielgio/dap.lua
+++ b/lua/gabrielgio/dap.lua
@@ -10,20 +10,20 @@ key.nnoremap("<leader>B", ":lua require'dap'.set_breakpoint(vim.fn.input('Condit
key.nnoremap("<leader>dr", ":lua require'dap'.repl.open()<CR>")
dap.adapters.delve = {
- type = "server",
- host = "127.0.0.1",
- port = 2345,
- }
+ type = "server",
+ host = "127.0.0.1",
+ port = 2345,
+}
dap.configurations.go = {
- {
- type = "delve",
- name = "remote",
- mode = "remote",
- request = "attach",
- connect = {
- host = "127.0.0.1",
- port = "2345",
- },
- },
+ {
+ type = "delve",
+ name = "remote",
+ mode = "remote",
+ request = "attach",
+ connect = {
+ host = "127.0.0.1",
+ port = "2345",
+ },
+ },
}