From 7216720bc34ba0e3d1fd122c756d9beeb43167d2 Mon Sep 17 00:00:00 2001 From: Harivansh Rathi Date: Sat, 14 Feb 2026 23:38:00 -0500 Subject: [PATCH] Fix lazygit config path for macOS, add delta gruvbox theme to gitconfig --- git/.gitconfig | 7 ++++ lazygit/.config/lazygit/config.yml | 4 --- .../Application Support/lazygit/config.yml | 32 +++++++++++++++++++ 3 files changed, 39 insertions(+), 4 deletions(-) delete mode 100644 lazygit/.config/lazygit/config.yml create mode 100644 lazygit/Library/Application Support/lazygit/config.yml diff --git a/git/.gitconfig b/git/.gitconfig index 3450807..e61fbd5 100644 --- a/git/.gitconfig +++ b/git/.gitconfig @@ -28,6 +28,13 @@ old = red bold new = green bold whitespace = red reverse +[delta] + syntax-theme = gruvbox-dark + hunk-header-style = omit + minus-style = syntax "#3c1f1e" + minus-emph-style = syntax "#72261d" + plus-style = syntax "#1d2c1d" + plus-emph-style = syntax "#2b4a2b" [push] autoSetupRemote = true [diff-so-fancy] diff --git a/lazygit/.config/lazygit/config.yml b/lazygit/.config/lazygit/config.yml deleted file mode 100644 index 3e0f61f..0000000 --- a/lazygit/.config/lazygit/config.yml +++ /dev/null @@ -1,4 +0,0 @@ -git: - paging: - pager: delta --dark --paging=never --line-numbers --hyperlinks --hyperlinks-file-link-format="lazygit-edit://{path}:{line}" - colorArg: always diff --git a/lazygit/Library/Application Support/lazygit/config.yml b/lazygit/Library/Application Support/lazygit/config.yml new file mode 100644 index 0000000..cd7c1c7 --- /dev/null +++ b/lazygit/Library/Application Support/lazygit/config.yml @@ -0,0 +1,32 @@ +git: + pagers: + - pager: delta --paging=never + colorArg: always +gui: + showBottomLine: false + showListFooter: false + showPanelJumps: false + showCommandLog: false + showRandomTip: false + splitDiff: auto + border: rounded + theme: + activeBorderColor: + - "#b8bb26" + - bold + inactiveBorderColor: + - "#504945" + selectedLineBgColor: + - "#3c3836" + optionsTextColor: + - "#fabd2f" + selectedRangeBgColor: + - "#504945" + cherryPickedCommitBgColor: + - "#689d6a" + cherryPickedCommitFgColor: + - "#282828" + unstagedChangesColor: + - "#fb4934" + defaultFgColor: + - "#ebdbb2"