diff options
| author | triethyl <triethylammonium@pm.me> | 2025-08-17 12:45:30 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-08-17 12:45:30 -0400 |
| commit | 89a88e24d00306076b067a0ccb87ad2a603054f3 (patch) | |
| tree | 85b5ef8730893b4ac2b750498916ee7f90e44e0d /pkgs/custom-neovim/config/lua/plugins/git.lua | |
| parent | 58ceb817bb6ba195d1189160878f318f3bcda0ef (diff) | |
neovim: working on new config
Diffstat (limited to 'pkgs/custom-neovim/config/lua/plugins/git.lua')
| -rw-r--r-- | pkgs/custom-neovim/config/lua/plugins/git.lua | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/custom-neovim/config/lua/plugins/git.lua b/pkgs/custom-neovim/config/lua/plugins/git.lua new file mode 100644 index 0000000..ce60214 --- /dev/null +++ b/pkgs/custom-neovim/config/lua/plugins/git.lua @@ -0,0 +1,26 @@ +return { + { + "mini.git", + lazy = false, + cmd = "Git", + after = function() + require("mini.git").setup() + end + }, + { + "mini.diff", + lazy = false, + after = function() + require("mini.diff").setup() + end + }, + { + "neogit", + lazy = true, + cmd = "Neogit", + after = function() + vim.cmd.packadd("plenary.nvim") + require("neogit").setup() + end + }, +} |
