aboutsummaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/pml68/configs/dap.lua7
-rw-r--r--lua/pml68/plugins.lua41
2 files changed, 0 insertions, 48 deletions
diff --git a/lua/pml68/configs/dap.lua b/lua/pml68/configs/dap.lua
deleted file mode 100644
index 94563e3..0000000
--- a/lua/pml68/configs/dap.lua
+++ /dev/null
@@ -1,7 +0,0 @@
-vim.keymap.set("n", "<leader>db", "<cmd> DapToggleBreakpoint <CR>")
-vim.keymap.set("n", "<leader>dr", "<cmd> DapContinue <CR>")
-vim.keymap.set("n", "<leader>dus", function()
- local widgets = require("dap.ui.widgets")
- local sidebar = widgets.sidebar(widgets.scope)
- sidebar.open()
-end)
diff --git a/lua/pml68/plugins.lua b/lua/pml68/plugins.lua
index 1823e87..45e18b4 100644
--- a/lua/pml68/plugins.lua
+++ b/lua/pml68/plugins.lua
@@ -229,47 +229,6 @@ local plugins = {
})
end
},
- --Dap
- {
- "mfussenegger/nvim-dap",
- init = function()
- require("pml68.configs.dap")
- end
- },
- {
- "jay-babu/mason-nvim-dap.nvim",
- event = "VeryLazy",
- dependencies = {
- "williamboman/mason.nvim",
- "mfussenegger/nvim-dap",
- },
- opts = {
- handlers = {},
- },
- },
- {
- "rcarriga/nvim-dap-ui",
- event = "VeryLazy",
- dependencies = {
- "mfussenegger/nvim-dap",
- "nvim-neotest/nvim-nio"
- },
- config = function()
- local dap = require("dap")
- local dapui = require("dapui")
-
- dapui.setup()
- dap.listeners.after.event_initialized["dapui_config"] = function()
- dapui.open()
- end
- dap.listeners.before.event_terminated["dapui_config"] = function()
- dapui.close()
- end
- dap.listeners.before.event_exited["dapui_config"] = function()
- dapui.close()
- end
- end,
- },
--Dart/Flutter
{
"akinsho/flutter-tools.nvim",