add floaterm with git commit keybinding

This commit is contained in:
Akulij 2025-04-29 19:44:49 +03:00
parent fb85e52c23
commit 4d59d38f43

View File

@ -47,4 +47,11 @@ return {
}, },
version = '^1.0.0', -- optional: only update when a new 1.x version is released version = '^1.0.0', -- optional: only update when a new 1.x version is released
}, },
{
"voldikss/vim-floaterm",
init = function ()
vim.g.floaterm_giteditor = false
vim.keymap.set('n', '<leader>cw', '<cmd>:FloatermNew git commit<cr>', { noremap = true, silent = true })
end
}
} }