nvim keymap cleanup
This commit is contained in:
parent
4db7bcac3b
commit
68213db5e0
2 changed files with 2 additions and 3 deletions
|
@ -22,7 +22,4 @@ return {
|
|||
ft = { "markdown", "Avante" },
|
||||
},
|
||||
},
|
||||
config = function()
|
||||
vim.keymap.set({ "n", "v" }, "<leader>a", "", { desc = "+ai" })
|
||||
end,
|
||||
}
|
||||
|
|
|
@ -7,3 +7,5 @@ vim.o.number = true
|
|||
vim.o.shiftwidth = 2
|
||||
vim.o.softtabstop = 2
|
||||
vim.o.tabstop = 2
|
||||
|
||||
vim.keymap.set({ "n", "v" }, "<leader>y", "\"*y", { desc = "yank to clipboard" })
|
||||
|
|
Loading…
Add table
Reference in a new issue