diff options
| author | Benjamin Linskey | 2026-05-22 03:32:06 -0400 |
|---|---|---|
| committer | Benjamin Linskey | 2026-05-22 03:32:06 -0400 |
| commit | 9cf35d12942406a5dca956ec9dcdc8bb106870d5 (patch) | |
| tree | 8f9f9291aaa3cdeb71fe20cff95ea94e25984fd6 | |
| parent | 24351e3f14b279b075de186ba8818172796d54ff (diff) | |
| download | dotfiles-9cf35d12942406a5dca956ec9dcdc8bb106870d5.tar.gz | |
Fix .editorconfig git commit message line length
EditorConfig’s global setting was overriding my explicitly defined Vim setting for textwidth for the gitcommit filetype.
| -rw-r--r-- | .editorconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig index 04b4777..8e70ea5 100644 --- a/.editorconfig +++ b/.editorconfig @@ -12,3 +12,7 @@ insert_final_newline = true [Makefile] indent_style = tab + +# Git commit message +[COMMIT_EDITMSG] +max_line_length=72 |