From 6c03e9f59de527e8978db4b354f3e67325c0f1a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Mon, 15 Jan 2024 11:38:04 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20style(nvim):=20identation=20corr?= =?UTF-8?q?ected?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/nvim/lua/plugins/extras/dap/core.lua | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.config/nvim/lua/plugins/extras/dap/core.lua b/.config/nvim/lua/plugins/extras/dap/core.lua index ae146b18..ee9a5b80 100644 --- a/.config/nvim/lua/plugins/extras/dap/core.lua +++ b/.config/nvim/lua/plugins/extras/dap/core.lua @@ -12,14 +12,15 @@ return { }, }, }, - -- stylua: ignore - keys = { - { "", function() require("dap").continue() end, desc = "Debug: Continue" }, - { "", function() require("dap").step_over() end, desc = "Debug: Step over" }, - { "", function() require("dap").step_into() end, desc = "Debug: Step into" }, - { "", function() require("dap").step_out() end, desc = "Debug: Step out" }, - { "", function() require("dap").toggle_breakpoint() end, desc = "Debug: Toggle breakpoint" }, - }, + -- stylua: ignore + keys = { + { "", function() require("dap").continue() end, desc = "Debug: Continue" }, + { "", function() require("dap").step_over() end, desc = "Debug: Step over" }, + { "", function() require("dap").step_into() end, desc = "Debug: Step into" }, + { "", function() require("dap").step_out() end, desc = "Debug: Step out" }, + { "", function() require("dap").toggle_breakpoint() end, desc = "Debug: Toggle breakpoint" }, + { "", function() require("dap").set_breakpoint(vim.fn.input('Breakpoint condition: ')) end, desc = "Breakpoint Condition" }, + }, }, { "folke/which-key.nvim",