From 867b395a654a144ab3647e7bb6b40cef3bd1e7fc Mon Sep 17 00:00:00 2001 From: Simon Ziegler Date: Fri, 12 Dec 2025 11:49:44 +0100 Subject: [PATCH] added german spellchecking for markdown and typst --- ftplugin/markdown.lua | 2 ++ ftplugin/typst.lua | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 ftplugin/markdown.lua create mode 100644 ftplugin/typst.lua diff --git a/ftplugin/markdown.lua b/ftplugin/markdown.lua new file mode 100644 index 0000000..737d1ef --- /dev/null +++ b/ftplugin/markdown.lua @@ -0,0 +1,2 @@ +vim.opt_local.spell = true +vim.opt_local.spelllang = { "de" } diff --git a/ftplugin/typst.lua b/ftplugin/typst.lua new file mode 100644 index 0000000..737d1ef --- /dev/null +++ b/ftplugin/typst.lua @@ -0,0 +1,2 @@ +vim.opt_local.spell = true +vim.opt_local.spelllang = { "de" }