summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/dap_lldb.lua
diff options
context:
space:
mode:
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,
- },
-}
-