From 7b846fd7217d1f539992ba80a63c7c4e888f3ac0 Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Sat, 30 Dec 2023 13:38:06 +0100 Subject: [PATCH] chore(nvim): add fugitive plugin --- nvim/lazy-lock.json | 1 + nvim/lua/plugins/fugitive.lua | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 nvim/lua/plugins/fugitive.lua diff --git a/nvim/lazy-lock.json b/nvim/lazy-lock.json index cce7339..5e2c8c9 100644 --- a/nvim/lazy-lock.json +++ b/nvim/lazy-lock.json @@ -120,6 +120,7 @@ "vim-abolish": { "branch": "master", "commit": "dcbfe065297d31823561ba787f51056c147aa682" }, "vim-astro": { "branch": "main", "commit": "9b4674ecfe1dd84b5fb9b4de1653975de6e8e2e1" }, "vim-bookmarks": { "branch": "master", "commit": "9cc5fa7ecc23b052bd524d07c85356c64b92aeef" }, + "vim-fugitive": { "branch": "master", "commit": "59659093581aad2afacedc81f009ed6a4bfad275" }, "vim-gh-line": { "branch": "master", "commit": "fbf368bdfad7e5478009a6dc62559e6b2c72d603" }, "vim-grammarous": { "branch": "master", "commit": "db46357465ce587d5325e816235b5e92415f8c05" }, "vim-illuminate": { "branch": "master", "commit": "3bd2ab64b5d63b29e05691e624927e5ebbf0fb86" }, diff --git a/nvim/lua/plugins/fugitive.lua b/nvim/lua/plugins/fugitive.lua new file mode 100644 index 0000000..d666fb7 --- /dev/null +++ b/nvim/lua/plugins/fugitive.lua @@ -0,0 +1,5 @@ +-- fugitive.vim: A Git wrapper so awesome, it should be illegal +-- https://github.com/tpope/vim-fugitive +return { + "tpope/vim-fugitive", +}