From 5422c36cbc7d5feb04165d2604421c156ebad580 Mon Sep 17 00:00:00 2001 From: Robert Morrison Date: Thu, 8 Jan 2026 05:23:33 +0000 Subject: [PATCH] feat(markdown): Add filetype config for markdown markdown files will now by default: - Have spell on - Have a textwidth of 75 - Highlight columns 75 & 80 --- ftplugin/markdown.lua | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 ftplugin/markdown.lua diff --git a/ftplugin/markdown.lua b/ftplugin/markdown.lua new file mode 100644 index 0000000..b0bc62d --- /dev/null +++ b/ftplugin/markdown.lua @@ -0,0 +1,3 @@ +vim.wo.spell = true +vim.bo.textwidth = 75 +vim.wo.colorcolumn = "75,80"