From 989269f4d5a0d3834bab3003cc557a5df5dbc13e Mon Sep 17 00:00:00 2001 From: iceyrazor Date: Tue, 29 Jul 2025 16:20:22 -0500 Subject: Squashed commit of the following: - customized tmux bar - swapped harpoon keys - fixed exit terminal key - removed trailing commas in waybar config - neovim - added proj search - added notes bind - bind to exit term (doesnt really work for me) - auto cwd OF file dir OR git main dir WHEN bufenter and bind - swaped tmux move keys - changed showmethekey windowrule --- env/.config/nvim/after/plugin/harpoon.lua | 4 ++-- env/.config/nvim/after/plugin/telescope.lua | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'env/.config/nvim/after') diff --git a/env/.config/nvim/after/plugin/harpoon.lua b/env/.config/nvim/after/plugin/harpoon.lua index 44b0de5..493a20c 100755 --- a/env/.config/nvim/after/plugin/harpoon.lua +++ b/env/.config/nvim/after/plugin/harpoon.lua @@ -7,8 +7,8 @@ if ok then vim.keymap.set("n","", ui.toggle_quick_menu) - vim.keymap.set("n","", function() ui.nav_file(1) end) - vim.keymap.set("n","", function() ui.nav_file(2) end) + vim.keymap.set("n","", function() ui.nav_file(1) end) + vim.keymap.set("n","", function() ui.nav_file(2) end) vim.keymap.set("n","", function() ui.nav_file(3) end) vim.keymap.set("n","", function() ui.nav_file(4) end) end diff --git a/env/.config/nvim/after/plugin/telescope.lua b/env/.config/nvim/after/plugin/telescope.lua index 8cc8efd..7a9d196 100755 --- a/env/.config/nvim/after/plugin/telescope.lua +++ b/env/.config/nvim/after/plugin/telescope.lua @@ -42,6 +42,7 @@ if ok then vim.keymap.set('n', 'pg', builtin.live_grep, {}) vim.keymap.set('n', 'pb', builtin.buffers, {}) vim.keymap.set('n', 'ph', builtin.help_tags, {}) + vim.keymap.set('n', 'pr', builtin.registers, {}) vim.keymap.set('n', 'ps', function() builtin.grep_string({ search = vim.fn.input("Grep > ") }); end) @@ -56,4 +57,8 @@ if ok then vim.keymap.set('n', 'gg', builtin.git_files, {}) vim.keymap.set('n', 'gs', builtin.git_status, {}) vim.keymap.set('n', 'gm', builtin.git_commits, {}) + + vim.keymap.set('n', 'proj', function () + require('telescope.builtin').find_files({cwd = "~/stuff/scripts"}) + end, {}) end -- cgit v1.3