diff options
author | Yigit Sever | 2024-08-30 10:18:26 +0200 |
---|---|---|
committer | Yigit Sever | 2024-08-30 10:18:26 +0200 |
commit | c8dc3000f5353210e2eb36b1fc51f020078cd7b4 (patch) | |
tree | 88f85974b76880129b440f856cc3993443ad8acf /.config/nvim/lua/plugins/git.lua | |
parent | f4834c7ff800aa06018997c5687c6ea507b63fe0 (diff) | |
download | dotfiles-c8dc3000f5353210e2eb36b1fc51f020078cd7b4.tar.gz dotfiles-c8dc3000f5353210e2eb36b1fc51f020078cd7b4.tar.bz2 dotfiles-c8dc3000f5353210e2eb36b1fc51f020078cd7b4.zip |
nvim: fugitive -> neogit
Diffstat (limited to '.config/nvim/lua/plugins/git.lua')
-rw-r--r-- | .config/nvim/lua/plugins/git.lua | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/.config/nvim/lua/plugins/git.lua b/.config/nvim/lua/plugins/git.lua index 2267cbd..d8e27f9 100644 --- a/.config/nvim/lua/plugins/git.lua +++ b/.config/nvim/lua/plugins/git.lua | |||
@@ -97,7 +97,12 @@ return { | |||
97 | }, | 97 | }, |
98 | }, | 98 | }, |
99 | { | 99 | { |
100 | "tpope/vim-fugitive", | 100 | "NeogitOrg/neogit", |
101 | cmd = { 'Git', 'Gstatus', 'Gblame', 'Gpush', 'Gpull' }, | 101 | dependencies = { |
102 | }, | 102 | "nvim-lua/plenary.nvim", -- required |
103 | "sindrets/diffview.nvim", -- optional - Diff integration | ||
104 | "nvim-telescope/telescope.nvim", -- optional | ||
105 | }, | ||
106 | config = true | ||
107 | } | ||
103 | } | 108 | } |