removed unused preload. vim word searching. moved tab maps. fixed zsh clipboard

This commit is contained in:
2025-06-08 19:02:50 -05:00
parent 01b58f09b7
commit fafe4746e4
6 changed files with 29 additions and 16 deletions

View File

@@ -32,5 +32,13 @@ if ok then
vim.keymap.set('n', '<leader>ps', function()
builtin.grep_string({ search = vim.fn.input("Grep > ") });
end)
--vim.keymap.set('n', '<C-p>', builtin.git_files, {})
vim.keymap.set('n', '<leader>pws', function()
local word = vim.fn.expand("<cword>")
builtin.grep_string({ search = word })
end)
vim.keymap.set('n', '<leader>pWs', function()
local word = vim.fn.expand("<cWORD>")
builtin.grep_string({ search = word })
end)
vim.keymap.set('n', '<leadere>pg', builtin.git_files, {})
end