aboutsummaryrefslogtreecommitdiff
path: root/env/.config/nvim/after/plugin
diff options
context:
space:
mode:
authoriceyrazor <iceyrazor@mailfence.com>2026-02-11 01:21:02 -0600
committericeyrazor <iceyrazor@mailfence.com>2026-02-11 01:21:02 -0600
commit803e70e7fc5f54554f9235b3553ca9f243ac4534 (patch)
tree00a4e2d0a08422fd943eced8244659d163e42f8a /env/.config/nvim/after/plugin
parent0300e55167f1df80b6dddf946bb16a2c063b6d67 (diff)
Squashed commit of the following:
- removed setkey-x11-i3.sh - added x11 keyswap to profile - c dap change - removed p10k - switched to servg - pipewire workaround - added domain to other newsboat command - added domain to newsboat - added new drive mount command - switched from notes.md to notes.adoc - fixed workspace monitor binding for i3
Diffstat (limited to 'env/.config/nvim/after/plugin')
-rw-r--r--env/.config/nvim/after/plugin/dap.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/env/.config/nvim/after/plugin/dap.lua b/env/.config/nvim/after/plugin/dap.lua
index a5f9c4b..6c678f7 100644
--- a/env/.config/nvim/after/plugin/dap.lua
+++ b/env/.config/nvim/after/plugin/dap.lua
@@ -54,8 +54,8 @@ if ok then
type = "codelldb",
request = "launch",
program = function()
- --return vim.fn.input('Path to executable: ', vim.fn.getcwd() .. '/', 'file')
- return vim.fn.getcwd() .. "/" .. vim.fn.fnamemodify(vim.fn.getcwd(), ':t')
+ return vim.fn.input('Path to executable: ', vim.fn.getcwd() .. '/', 'file')
+ --return vim.fn.getcwd() .. "/" .. vim.fn.fnamemodify(vim.fn.getcwd(), ':t')
end,
cwd = '${workspaceFolder}',
stopOnEntry = false,