✨ feat(nvim): added new keymap shorcuts for adding and removing words in the dictionary
This commit is contained in:
parent
f53e9fd66a
commit
e6795f4673
1 changed files with 4 additions and 0 deletions
|
@ -162,3 +162,7 @@ map("n", "<leader>fd", function()
|
||||||
vim.cmd("Dashboard")
|
vim.cmd("Dashboard")
|
||||||
end
|
end
|
||||||
end, { desc = "Dashboard" })
|
end, { desc = "Dashboard" })
|
||||||
|
|
||||||
|
-- Spelling
|
||||||
|
map("n", "<leader>!", "zg", { desc = "Add Word to Dictionary" })
|
||||||
|
map("n", "<leader>@", "zug", { desc = "Remove Word from Dictionary" })
|
||||||
|
|
Loading…
Add table
Reference in a new issue