fix: format config files

This commit is contained in:
Devin Haska 2025-05-27 11:54:47 -07:00
parent ad57cbb57d
commit 2ad0fb18a1
8 changed files with 32 additions and 33 deletions

View file

@ -61,4 +61,3 @@ end
require("lazy").setup("plugins")
require("keybinds")

View file

@ -14,4 +14,5 @@ vim.keymap.set("x", "<Leader>p", "\"_dP", { desc = "Paste without replacing clip
vim.keymap.set("n", "<Leader>y", "\"*y", { desc = "Yank into system clipboard" })
vim.keymap.set("v", "<Leader>y", "\"*y", { desc = "Yank into system clipboard" })
vim.keymap.set("n", "<leader>s", [[:%s/\<<C-r><C-w>\>/<C-r><C-w>/gI<Left><Left><Left>]], { desc = "Like `ciw` for any highlighted text (doesn't have to be word)"})
vim.keymap.set("n", "<leader>s", [[:%s/\<<C-r><C-w>\>/<C-r><C-w>/gI<Left><Left><Left>]],
{ desc = "Like `ciw` for any highlighted text (doesn't have to be word)" })

View file

@ -7,4 +7,3 @@ return {
vim.keymap.set("n", "<Leader>gp", ":Git push<CR>", { desc = "Run `git push`" })
end
}