From 9d1a039dd6fe55f36bb53d6c0b2583df632b1a7f Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Wed, 20 Mar 2024 10:48:29 +0100 Subject: [PATCH] install git graph viewer --- lua/lazy-plugins.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lua/lazy-plugins.lua b/lua/lazy-plugins.lua index bf6ba7f..eba43e1 100644 --- a/lua/lazy-plugins.lua +++ b/lua/lazy-plugins.lua @@ -26,6 +26,16 @@ require('lazy').setup({ -- Processing-Java 'sophacles/vim-processing', + -- Git graph viewer + { + 'rbong/vim-flog', + lazy = true, + cmd = { 'Flog', 'Flogsplit', 'Floggit' }, + dependencies = { + 'tpope/vim-fugitive', + }, + }, + -- Markdown preview plugin { 'iamcco/markdown-preview.nvim',