diff options
| author | Christian Krinitsin <christian@krinitsin.xyz> | 2024-03-16 21:00:19 +0100 |
|---|---|---|
| committer | Christian Krinitsin <christian@krinitsin.xyz> | 2024-03-16 21:00:19 +0100 |
| commit | b8a4392c8754a56265701f97f4833b447efff29a (patch) | |
| tree | c7a0f84d29ace7a215201311ebc02e1e8eb7f952 /.config/nvim/lua/plugins/git.lua | |
| download | dotfiles-b8a4392c8754a56265701f97f4833b447efff29a.tar.gz dotfiles-b8a4392c8754a56265701f97f4833b447efff29a.zip | |
init
Diffstat (limited to '.config/nvim/lua/plugins/git.lua')
| -rw-r--r-- | .config/nvim/lua/plugins/git.lua | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins/git.lua b/.config/nvim/lua/plugins/git.lua new file mode 100644 index 0000000..4e09cd3 --- /dev/null +++ b/.config/nvim/lua/plugins/git.lua @@ -0,0 +1,18 @@ +return { + + { + "kdheepak/lazygit.nvim", + cmd = { + "LazyGit", + "LazyGitConfig", + "LazyGitCurrentFile", + "LazyGitFilter", + "LazyGitFilterCurrentFile", + }, + -- optional for floating window border decoration + dependencies = { + "nvim-lua/plenary.nvim", + }, + }, + +} |