DEV Community

Discussion on: Keeping Git Commit Messages Consistent with a Custom Template

Collapse
 
haxnet profile image
HaxNet

Thanks for letting me know about this. I use git here and there and like the feature of template.

git config --global core.editor=nvim +14 -c 'startinsert' didn't work for me

I use arch, not sure if that's the reason, but for anyone having trouble with this.
My fix

git config --global core.editor 'vim +14 +startinsert'

cheers

Collapse
 
timmybytes profile image
Timothy Merritt

Thanks for pointing this out, @haxnet . I've edited the article to include Neovim and Vim configurations, with links to more info!