From 5849e2ad7323f086bd6edf221b29e3f0b2b7cbd3 Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Thu, 5 Dec 2024 13:34:46 -0500 Subject: Removed Useless Configs --- .config/nvim.bak/lua/dap_lldb.lua | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .config/nvim.bak/lua/dap_lldb.lua (limited to '.config/nvim.bak/lua/dap_lldb.lua') diff --git a/.config/nvim.bak/lua/dap_lldb.lua b/.config/nvim.bak/lua/dap_lldb.lua deleted file mode 100644 index 40861d0..0000000 --- a/.config/nvim.bak/lua/dap_lldb.lua +++ /dev/null @@ -1,25 +0,0 @@ -local dap = require'dap' - -require("dapui").setup() - -dap.adapters.lldb = { - type = 'executable', - -- absolute path is important here, otherwise the argument in the `runInTerminal` request will default to $CWD/lldb-vscode - command = '/usr/bin/lldb-vscode', - name = "lldb" -} -dap.configurations.c = { - { - name = "Launch", - type = "lldb", - request = "launch", - program = function() - return vim.fn.input('Path to executable: ', vim.fn.getcwd() .. '/', 'file') - end, - cwd = '${workspaceFolder}', - stopOnEntry = false, - args = {}, - runInTerminal = true, - }, -} - -- cgit v1.2.3