From 7783b8eb609b4542c7e9f695732e7122ac1a28f7 Mon Sep 17 00:00:00 2001 From: Fabrice Mouhartem Date: Tue, 11 Feb 2025 17:01:29 +0100 Subject: [PATCH] fix(autocommand): fix typo for tex autocommand - 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 f0fb700..a6a4982 100644 --- a/lua/autocommands.lua +++ b/lua/autocommands.lua @@ -53,7 +53,7 @@ vim.api.nvim_create_autocmd("FileType", { vim.o.foldtext = 'vimtex#fold#text()' vim.o.spell = true spell_keymap() - vim.o.spellang = "en,fr" + vim.o.spelllang = "en,fr" end, })