19 lines
469 B
Lua
19 lines
469 B
Lua
packer.use { -- toggle comments
|
|
'https://github.com/tomtom/tcomment_vim',
|
|
config = function()
|
|
map('n', '<Leader>c', TComment)
|
|
end
|
|
}
|
|
|
|
packer.use {
|
|
'https://github.com/TimUntersberger/neogit',
|
|
requires = 'https://github.com/nvim-lua/plenary.nvim',
|
|
config = function()
|
|
require('which-key').setup {
|
|
-- commit_popup = {
|
|
-- kind = 'split'
|
|
-- }
|
|
}
|
|
end
|
|
}
|