enable spellcheck in git commits

This commit is contained in:
2022-06-13 20:25:05 +03:00
parent d33bca2dba
commit 6bc102f601

View File

@@ -28,6 +28,7 @@ vim.api.nvim_create_autocmd("BufEnter", {
if ft == "gitcommit" then
vim.wo.colorcolumn = "50"
vim.cmd("setlocal spell")
end
end,
})