From 15c5832d79ddbe9154706ece4995e71880630f0c Mon Sep 17 00:00:00 2001 From: rootiest Date: Wed, 28 Aug 2024 06:37:29 -0400 Subject: [PATCH] refactor: update width limit for git blame display --- lua/plugins/git.lua | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/lua/plugins/git.lua b/lua/plugins/git.lua index 2343c18..4d06cf7 100644 --- a/lua/plugins/git.lua +++ b/lua/plugins/git.lua @@ -59,7 +59,7 @@ return { local git_blame = require("gitblame") local utils = require("utils.rootiest") -- Define the width limit for displaying the Git blame component - local width_limit = 180 -- Adjust this value as needed + local width_limit = 245 -- Adjust this value as needed -- Add Git-blame to lualine_c section table.insert(config.sections.lualine_c, { git_blame.get_current_blame_text, @@ -98,20 +98,4 @@ return { }, keys = data.keys.gitgraph, }, - { -- FuGit - "SuperBo/fugit2.nvim", - opts = { - width = 100, - }, - dependencies = { - "MunifTanjim/nui.nvim", - "nvim-lua/plenary.nvim", - { - "chrisgrieser/nvim-tinygit", -- optional: for Github PR view - dependencies = { "stevearc/dressing.nvim" }, - }, - }, - cmd = data.cmd.fugit, - keys = data.keys.fugit, - }, }