removed unused preload. vim word searching. moved tab maps. fixed zsh clipboard
This commit is contained in:
10
env/.config/nvim/after/plugin/telescope.lua
vendored
10
env/.config/nvim/after/plugin/telescope.lua
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user