aboutsummaryrefslogtreecommitdiff
path: root/env/.config/nvim
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
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')
-rw-r--r--env/.config/nvim/after/plugin/dap.lua4
-rwxr-xr-xenv/.config/nvim/lua/yourmom/remap.lua2
2 files changed, 3 insertions, 3 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,
diff --git a/env/.config/nvim/lua/yourmom/remap.lua b/env/.config/nvim/lua/yourmom/remap.lua
index 895203a..145062e 100755
--- a/env/.config/nvim/lua/yourmom/remap.lua
+++ b/env/.config/nvim/lua/yourmom/remap.lua
@@ -4,7 +4,7 @@ vim.g.maplocalleader=" "
vim.keymap.set("n", "<leader>pv", vim.cmd.Ex)
-- notes
-vim.keymap.set("n", "<leader>notes", ":e ~/stuff/notes/notes.md<CR>")
+vim.keymap.set("n", "<leader>notes", ":e ~/stuff/notes/notes.adoc<CR>")
--move highlighted stuffs
vim.keymap.set("v", "J", ":m '>+1<CR>gv=gv")