From 0297d7043f0ff2fe8aef15ad2b566166f47be707 Mon Sep 17 00:00:00 2001 From: Marcus Ho Date: Tue, 14 Jan 2025 10:01:29 +0800 Subject: [PATCH] Add plugin vim-fugitive --- lazy-lock.json | 2 ++ lua/custom/plugins/fugitive.lua | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 lua/custom/plugins/fugitive.lua diff --git a/lazy-lock.json b/lazy-lock.json index b1a84700..4e0da28c 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -23,6 +23,8 @@ "telescope-ui-select.nvim": { "branch": "master", "commit": "6e51d7da30bd139a6950adf2a47fda6df9fa06d2" }, "telescope.nvim": { "branch": "0.1.x", "commit": "a0bbec21143c7bc5f8bb02e0005fa0b982edc026" }, "todo-comments.nvim": { "branch": "main", "commit": "ae0a2afb47cf7395dc400e5dc4e05274bf4fb9e0" }, + "undotree": { "branch": "master", "commit": "2556c6800b210b2096b55b66e74b4cc1d9ebbe4f" }, + "vim-fugitive": { "branch": "master", "commit": "174230d6a7f2df94705a7ffd8d5413e27ec10a80" }, "vim-sleuth": { "branch": "master", "commit": "be69bff86754b1aa5adcbb527d7fcd1635a84080" }, "which-key.nvim": { "branch": "main", "commit": "1f8d414f61e0b05958c342df9b6a4c89ce268766" } } diff --git a/lua/custom/plugins/fugitive.lua b/lua/custom/plugins/fugitive.lua new file mode 100644 index 00000000..b6b4c97b --- /dev/null +++ b/lua/custom/plugins/fugitive.lua @@ -0,0 +1,3 @@ +return { + 'tpope/vim-fugitive', +}