nvim: Default to textwidth of 100 for markdown files

This commit is contained in:
Marty Oehme 2025-08-23 12:38:45 +02:00
parent 72f3e4877c
commit 0af5a2def5
Signed by: Marty
GPG key ID: 4E535BC19C61886E

View file

@ -4,6 +4,8 @@ vim.opt.tabstop = 2
vim.opt.shiftwidth = 2 vim.opt.shiftwidth = 2
vim.opt.softtabstop = 2 vim.opt.softtabstop = 2
vim.opt.textwidth = 100
if require("core.util").is_available("which-key") then if require("core.util").is_available("which-key") then
require("which-key").add({ require("which-key").add({
{ "<localleader>c", group = "codecells" }, { "<localleader>c", group = "codecells" },