From 531370a494c883d39fd0ae602d5d96378245f6db Mon Sep 17 00:00:00 2001 From: Stefan Herold <794372+Blackjacx@users.noreply.github.com> Date: Mon, 11 Dec 2023 00:15:41 +0100 Subject: [PATCH] Add vim fugitive https://github.com/tpope/vim-fugitive --- bootstrap/config_dirs/nvim/lazy-lock.json | 1 + bootstrap/config_dirs/nvim/lua/user/plugins/fugitive.lua | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 bootstrap/config_dirs/nvim/lua/user/plugins/fugitive.lua diff --git a/bootstrap/config_dirs/nvim/lazy-lock.json b/bootstrap/config_dirs/nvim/lazy-lock.json index 26e3a17..a269b98 100644 --- a/bootstrap/config_dirs/nvim/lazy-lock.json +++ b/bootstrap/config_dirs/nvim/lazy-lock.json @@ -31,6 +31,7 @@ "telescope-fzf-native.nvim": { "branch": "main", "commit": "6c921ca12321edaa773e324ef64ea301a1d0da62" }, "telescope.nvim": { "branch": "0.1.x", "commit": "d90956833d7c27e73c621a61f20b29fdb7122709" }, "vim-ReplaceWithRegister": { "branch": "master", "commit": "aad1e8fa31cb4722f20fe40679caa56e25120032" }, + "vim-fugitive": { "branch": "master", "commit": "46eaf8918b347906789df296143117774e827616" }, "vim-maximizer": { "branch": "master", "commit": "2e54952fe91e140a2e69f35f22131219fcd9c5f1" }, "vim-tmux-navigator": { "branch": "master", "commit": "7db70e08ea03b3e4d91f63713d76134512e28d7e" }, "which-key.nvim": { "branch": "main", "commit": "4433e5ec9a507e5097571ed55c02ea9658fb268a" } diff --git a/bootstrap/config_dirs/nvim/lua/user/plugins/fugitive.lua b/bootstrap/config_dirs/nvim/lua/user/plugins/fugitive.lua new file mode 100644 index 0000000..2c2efeb --- /dev/null +++ b/bootstrap/config_dirs/nvim/lua/user/plugins/fugitive.lua @@ -0,0 +1,3 @@ +return { + "tpope/vim-fugitive", +}