summaryrefslogtreecommitdiffstats
path: root/init.lua
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-06-29 15:05:56 +0200
committerThomas Vanbesien <tvanbesi@proton.me>2026-06-29 15:05:56 +0200
commit06f6787b86df0ed5f0fced08ea647672be1e028c (patch)
tree25ca1970494bc8fb462e990a2092c4e4eead9868 /init.lua
parent30e21c2fc6bca996bd64fcde35b5f72e89c71877 (diff)
downloadnvim-config-06f6787b86df0ed5f0fced08ea647672be1e028c.tar.gz
nvim-config-06f6787b86df0ed5f0fced08ea647672be1e028c.zip
refactor: remove textwidth.gitcommit global variable
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.lua b/init.lua
index 02a480d..2d5f96a 100644
--- a/init.lua
+++ b/init.lua
@@ -6,7 +6,7 @@ vim.g.dotfiles = {
augroup = vim.api.nvim_create_augroup("dotfiles", {}),
-- Single source of truth for per-filetype formatting width
-- (textwidth → gw, mdformat --wrap, render-markdown block widths).
- textwidth = { sh = 80, lua = 100, markdown = 120, gitcommit = 72, python = 88 },
+ textwidth = { sh = 80, lua = 100, markdown = 120, python = 88 },
}
-- Sets the window bar content and style (custom hl-groups WinBarCwd and WinBarFilePath)