fix(autocommand): fix typo for tex autocommand

- Missing l in `spelllang`
This commit is contained in:
Fabrice Mouhartem 2025-02-11 17:01:29 +01:00
parent 623ca0a753
commit 7783b8eb60
Signed by: fmouhart
GPG Key ID: 2C5033B228CFE4E7

View File

@ -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,
})