From 1ddfc4f1ed8854267e0bded6afd28a76b2fd95b7 Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Sat, 30 Mar 2024 16:21:34 +0100 Subject: [PATCH] moved git related plugins together --- lua/custom/plugins/fugitive.lua | 5 +++++ lua/lazy-plugins.lua | 10 ---------- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/lua/custom/plugins/fugitive.lua b/lua/custom/plugins/fugitive.lua index 5562ab2..5335615 100644 --- a/lua/custom/plugins/fugitive.lua +++ b/lua/custom/plugins/fugitive.lua @@ -12,5 +12,10 @@ return { 'tpope/vim-fugitive', dependencies = { 'tpope/vim-rhubarb', + { + 'rbong/vim-flog', + lazy = true, + cmd = { 'Flog', 'Flogsplit', 'Floggit' }, + }, }, } diff --git a/lua/lazy-plugins.lua b/lua/lazy-plugins.lua index c4541d7..0c7c36c 100644 --- a/lua/lazy-plugins.lua +++ b/lua/lazy-plugins.lua @@ -22,16 +22,6 @@ 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',