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:
2025-08-06 12:15:13 -05:00
parent 83318afdb6
commit 968141f8a7
9 changed files with 228 additions and 23 deletions

View File

@@ -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>")