diff options
| author | pml68 <tutorialmester@gmail.com> | 2024-04-26 23:39:26 +0200 |
|---|---|---|
| committer | pml68 <tutorialmester@gmail.com> | 2024-04-26 23:39:26 +0200 |
| commit | 1295227d417577ec811323583611c21d9f0a2f84 (patch) | |
| tree | 95289c65e1f159fd6aacbff0b977abe5d6604cbd | |
| parent | feat: disable vim.opt.swapfile (diff) | |
| download | nvim-1295227d417577ec811323583611c21d9f0a2f84.tar.gz | |
feat: remove DAP related code, since I don't use a debugger
| -rw-r--r-- | lua/pml68/configs/dap.lua | 7 | ||||
| -rw-r--r-- | lua/pml68/plugins.lua | 41 |
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", |
