summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/dap_lldb.lua
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2024-03-26 21:43:28 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2024-03-26 21:43:28 -0400
commit4a903ca920b43184efb05a30c0bb79d21b56e0a9 (patch)
tree78b8a674f404954af127a2cf7546780824c3b904 /.config/nvim/lua/dap_lldb.lua
parentf4b64685c4e5e80bd279cbb7d6f1c774041e7baa (diff)
Updated neovim based on theprimagen
Diffstat (limited to '.config/nvim/lua/dap_lldb.lua')
-rw-r--r--.config/nvim/lua/dap_lldb.lua25
1 files changed, 0 insertions, 25 deletions
diff --git a/.config/nvim/lua/dap_lldb.lua b/.config/nvim/lua/dap_lldb.lua
deleted file mode 100644
index 40861d0..0000000
--- a/.config/nvim/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,
- },
-}
-