From 31d6caf02333031ef2b19e51f5e883e826be7b6e Mon Sep 17 00:00:00 2001 From: Robert Morrison Date: Mon, 25 Jul 2022 22:13:18 +0100 Subject: [PATCH] Add ftplugin markdown Autoset spell and textwidth --- after/ftplugin/markdown.lua | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 after/ftplugin/markdown.lua diff --git a/after/ftplugin/markdown.lua b/after/ftplugin/markdown.lua new file mode 100644 index 0000000..10a0e71 --- /dev/null +++ b/after/ftplugin/markdown.lua @@ -0,0 +1,3 @@ + +vim.opt_local.spell = true; +vim.opt_local.textwidth = 75;