2024-02-17 20:46:10 -08:00
|
|
|
#!/usr/bin/env fish
|
|
|
|
|
|
|
|
function lzg --wraps=lazygit
|
2024-03-09 20:28:57 -08:00
|
|
|
set -f configs "$XDG_CONFIG_HOME/lazygit/config.yml,$HOME/.themes/lazygit/catppuccin/themes-mergable/macchiato/pink.yml"
|
2024-02-17 20:46:10 -08:00
|
|
|
|
|
|
|
if test "$(pwd)" = "$HOME"
|
|
|
|
lazygit --use-config-file="$configs" --work-tree="$HOME" --git-dir="$HOME/.dot"
|
|
|
|
else
|
|
|
|
lazygit --use-config-file="$configs"
|
|
|
|
end
|
|
|
|
end
|