Squashed commit of the following:
- mpv
- i3
- changed zsh ps1
- added swapscape to backup-tol2
- removed floating
- show hidden on word search telescope
- added mod+r to leave resize
This commit is contained in:
11
env/.config/nvim/after/plugin/telescope.lua
vendored
11
env/.config/nvim/after/plugin/telescope.lua
vendored
@@ -44,7 +44,16 @@ if ok then
|
||||
vim.keymap.set('n', '<leader>ph', builtin.help_tags, {})
|
||||
vim.keymap.set('n', '<leader>pr', builtin.registers, {})
|
||||
vim.keymap.set('n', '<leader>ps', function()
|
||||
builtin.grep_string({ search = vim.fn.input("Grep > ") });
|
||||
builtin.grep_string({
|
||||
search = vim.fn.input("Grep > "),
|
||||
additional_args = function()
|
||||
return {
|
||||
"--hidden",
|
||||
"--no-ignore",
|
||||
"--glob", "!**/.git/*"
|
||||
}
|
||||
end
|
||||
})
|
||||
end)
|
||||
vim.keymap.set('n', '<leader>pws', function()
|
||||
local word = vim.fn.expand("<cword>")
|
||||
|
||||
Reference in New Issue
Block a user