- Finally move all keymappings into which-key - Change to MunsMan/kitty-navigator.nvim - Change mapping for switching window/split to Ctrl+Shift+<vim-motion> - Add some new mappings like 'gt' for LazyGit Terminal split
17 lines
464 B
Lua
17 lines
464 B
Lua
-- -----------------------------------------------------------------------------
|
|
-- --------------------------------- LazyGit -----------------------------------
|
|
-- -----------------------------------------------------------------------------
|
|
return {
|
|
"kdheepak/lazygit.nvim",
|
|
cmd = {
|
|
"LazyGit",
|
|
"LazyGitConfig",
|
|
"LazyGitCurrentFile",
|
|
"LazyGitFilter",
|
|
"LazyGitFilterCurrentFile",
|
|
},
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
},
|
|
}
|