feat(nvim): added new keymap shorcuts for adding and removing words in the dictionary

This commit is contained in:
Sergio Laín 2024-03-29 18:16:34 +01:00
parent f53e9fd66a
commit e6795f4673
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -162,3 +162,7 @@ map("n", "<leader>fd", function()
vim.cmd("Dashboard")
end
end, { desc = "Dashboard" })
-- Spelling
map("n", "<leader>!", "zg", { desc = "Add Word to Dictionary" })
map("n", "<leader>@", "zug", { desc = "Remove Word from Dictionary" })