fix: format config files
This commit is contained in:
parent
ad57cbb57d
commit
2ad0fb18a1
8 changed files with 32 additions and 33 deletions
1
init.lua
1
init.lua
|
@ -61,4 +61,3 @@ end
|
||||||
|
|
||||||
require("lazy").setup("plugins")
|
require("lazy").setup("plugins")
|
||||||
require("keybinds")
|
require("keybinds")
|
||||||
|
|
||||||
|
|
|
@ -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("n", "<Leader>y", "\"*y", { desc = "Yank into system clipboard" })
|
||||||
vim.keymap.set("v", "<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)" })
|
||||||
|
|
|
@ -7,4 +7,3 @@ return {
|
||||||
vim.keymap.set("n", "<Leader>gp", ":Git push<CR>", { desc = "Run `git push`" })
|
vim.keymap.set("n", "<Leader>gp", ":Git push<CR>", { desc = "Run `git push`" })
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue