From c9a5b8b04c334961293e6e722a27a7d531c5e8e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Sun, 13 Oct 2024 01:26:17 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(yazi):=20yatline=20added=20beh?= =?UTF-8?q?ind=20and=20ahead=20options?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/yazi/init.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.config/yazi/init.lua b/.config/yazi/init.lua index 68ba0eb0..1f92db66 100644 --- a/.config/yazi/init.lua +++ b/.config/yazi/init.lua @@ -154,6 +154,10 @@ require("yatline-githead"):setup({ commit_symbol = " ", + show_behind_ahead = true, + behind_symbol = " ", + ahead_symbol = " ", + show_stashes = true, stashes_symbol = " ", @@ -178,6 +182,8 @@ require("yatline-githead"):setup({ staged_color = catppuccin_palette.green, unstaged_color = catppuccin_palette.yellow, untracked_color = catppuccin_palette.pink, + ahead_color = catppuccin_palette.green, + behind_color = catppuccin_palette.yellow, }) require("git"):setup()