From 645ad29b7cd495c8183707b1f437f3978da648ec Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Mon, 18 Nov 2024 21:50:23 -0600 Subject: [PATCH] refactor(nvim): make spell toggle keybind on `ss` --- users/price/dots/.config/nvim/lua/core/mappings.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/price/dots/.config/nvim/lua/core/mappings.lua b/users/price/dots/.config/nvim/lua/core/mappings.lua index cb5ee27b..25d857a2 100755 --- a/users/price/dots/.config/nvim/lua/core/mappings.lua +++ b/users/price/dots/.config/nvim/lua/core/mappings.lua @@ -49,7 +49,7 @@ M.setup = function() end, { silent = true, desc = "Remove Highlighted Searches" }) -- Spell Checking - vim.keymap.set("n", "st", function() + vim.keymap.set("n", "ss", function() vim.opt.spell = not vim.opt.spell:get() end, { silent = true, desc = "Toggle Spell" })