From faea5c2b0c0655703d829496490ee4e0c528aeb2 Mon Sep 17 00:00:00 2001 From: Fabrice Mouhartem Date: Tue, 11 Feb 2025 19:58:04 +0100 Subject: [PATCH] fix(autocommand): typo - Same as previously: missing l in `spelllang` --- lua/autocommands.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/autocommands.lua b/lua/autocommands.lua index a6a4982..414cafe 100644 --- a/lua/autocommands.lua +++ b/lua/autocommands.lua @@ -66,7 +66,7 @@ vim.api.nvim_create_autocmd("FileType", { vim.keymap.set('', 'mp', ':TypstWatch', { noremap = true, silent = true, desc = "[M]ake [P]review" }) vim.o.spell = true spell_keymap() - vim.o.spellang = "fr,en" + vim.o.spelllang = "fr,en" end, })