summaryrefslogtreecommitdiff
path: root/ar/.config/TheSiahxyz/lua/thesiahxyz/core/keymaps.lua
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-06-07 12:12:59 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-06-07 12:12:59 +0900
commit55eda12a5e8ec3920bc7f78e1949c498787b84bd (patch)
treee7b2c95c127d9e4ddc0c0305737b4634b4616352 /ar/.config/TheSiahxyz/lua/thesiahxyz/core/keymaps.lua
parent7ebd222b1de38e827172d7b158a25c7c73684f2f (diff)
updates
Diffstat (limited to 'ar/.config/TheSiahxyz/lua/thesiahxyz/core/keymaps.lua')
-rw-r--r--ar/.config/TheSiahxyz/lua/thesiahxyz/core/keymaps.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/ar/.config/TheSiahxyz/lua/thesiahxyz/core/keymaps.lua b/ar/.config/TheSiahxyz/lua/thesiahxyz/core/keymaps.lua
index 993b051..06c70d9 100644
--- a/ar/.config/TheSiahxyz/lua/thesiahxyz/core/keymaps.lua
+++ b/ar/.config/TheSiahxyz/lua/thesiahxyz/core/keymaps.lua
@@ -576,9 +576,9 @@ end
-- Spell
vim.keymap.set("n", "zp", function()
- vim.opt.spelllang = { "en", "cjk" }
- vim.cmd("echo 'Spell language set to English and CJK'")
-end, { desc = "Spelling language English and CJK" })
+ vim.opt.spelllang = { "en", "ko", "cjk" }
+ vim.cmd("echo 'Spell language set to English, Korean, and CJK'")
+end, { desc = "Spelling language English, Korean, and CJK" })
-- repeat the replacement done by |z=| for all matches with the replaced word in the current window.
vim.keymap.set("n", "z.", function()
vim.api.nvim_feedkeys(vim.api.nvim_replace_termcodes(":spellr\n", true, false, true), "m", true)