adding neovim config, splitting it up
This commit is contained in:
parent
817a08c7e2
commit
b2322f2877
17 changed files with 460 additions and 1 deletions
19
.config/nvim/lua/klowner/plugins/lazygit.lua
Normal file
19
.config/nvim/lua/klowner/plugins/lazygit.lua
Normal file
|
@ -0,0 +1,19 @@
|
|||
return {
|
||||
"kdheepak/lazygit.nvim",
|
||||
cmd = {
|
||||
"LazyGit",
|
||||
"LazyGitConfig",
|
||||
"LazyGitCurrentFile",
|
||||
"LazyGitFilter",
|
||||
"LazyGitFilterCurrentFile",
|
||||
},
|
||||
-- optional for floating window border decoration
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
},
|
||||
-- setting the keybinding for LazyGit with 'keys' is recommended in
|
||||
-- order to load the plugin when the command is run for the first time
|
||||
keys = {
|
||||
{ "<leader>lg", "<cmd>LazyGit<cr>", desc = "Open lazy git" },
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue