refactor(nvim): make spell toggle keybind on ss
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 39s

This commit is contained in:
Price Hiller 2024-11-18 21:50:23 -06:00
parent 6ca917b7c5
commit 645ad29b7c
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -49,7 +49,7 @@ M.setup = function()
end, { silent = true, desc = "Remove Highlighted Searches" })
-- Spell Checking
vim.keymap.set("n", "<leader>st", function()
vim.keymap.set("n", "<leader>ss", function()
vim.opt.spell = not vim.opt.spell:get()
end, { silent = true, desc = "Toggle Spell" })