fix(autocommand): typo

- Same as previously: missing l in `spelllang`
This commit is contained in:
Fabrice Mouhartem 2025-02-11 19:58:04 +01:00
parent 758f448b2f
commit faea5c2b0c
Signed by: fmouhart
GPG Key ID: 2C5033B228CFE4E7

View File

@ -66,7 +66,7 @@ vim.api.nvim_create_autocmd("FileType", {
vim.keymap.set('', '<LocalLeader>mp', ':TypstWatch<CR>', { noremap = true, silent = true, desc = "[M]ake [P]review" }) vim.keymap.set('', '<LocalLeader>mp', ':TypstWatch<CR>', { noremap = true, silent = true, desc = "[M]ake [P]review" })
vim.o.spell = true vim.o.spell = true
spell_keymap() spell_keymap()
vim.o.spellang = "fr,en" vim.o.spelllang = "fr,en"
end, end,
}) })