nix-config/modules/nixvim/ftplugin/gitcommit.nix
Oliver Davies 703bf836de
All checks were successful
/ check (push) Successful in 55s
Rename modules directory
2025-08-18 11:35:07 +01:00

9 lines
218 B
Nix

{
flake.modules.nixvim.custom.extraFiles."after/ftplugin/gitcommit.lua".text =
# lua
''
vim.opt_local.colorcolumn = "50,72"
vim.opt_local.spell = true
vim.opt_local.textwidth = 72
'';
}