1
0
Fork 0

nvim: treat NeogitCommitMessage like gitcommit

This commit is contained in:
tastytea 2022-08-25 15:42:16 +02:00
parent 11a6d895fb
commit 0f5675b963
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ map('n', '<Leader>gg', neogit.open, 'Open Neogit')
vim.api.nvim_create_augroup('config_coding', { clear = true })
vim.api.nvim_create_autocmd({ 'FileType' }, {
group = 'config_coding',
pattern = { 'gitcommit', 'gitrebase' },
pattern = { 'gitcommit', 'gitrebase', 'NeogitCommitMessage' },
command = [[startinsert | 1]]
})