spell stuff

This commit is contained in:
2025-06-03 14:25:35 +02:00
parent ef615fa7d3
commit ad70ada381
3 changed files with 10 additions and 2 deletions
+2 -2
View File
@@ -17,10 +17,10 @@ vim.keymap.set("v", "k", "gk", { noremap = true, silent = true })
-- Spellchecker
vim.api.nvim_create_autocmd("FileType", {
pattern = { "markdown", "text", "typst" },
-- pattern = { "markdown", "text", "typst" },
callback = function()
vim.opt_local.spell = true
vim.opt_local.spelllang = "de"
vim.opt_local.spelllang = "en"
end,
})