From f82233a49478ef634f12d8a52bf034dc3b234d10 Mon Sep 17 00:00:00 2001 From: Laurent Le Houerou Date: Thu, 23 May 2024 14:32:42 +0400 Subject: [PATCH] add lazygit alias & add go bin to path --- zsh/.zshrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index 3a52253..e786ca6 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -68,6 +68,7 @@ alias dcdown="docker compose down" alias dclogs="docker logs -f --tail 100" alias vi="nvim" alias vim="nvim" +alias lg="lazygit" # Shell integrations eval "$(fzf --zsh)" @@ -78,4 +79,4 @@ eval "$(zoxide init --cmd cd zsh)" # bun export BUN_INSTALL="$HOME/.bun" -export PATH="$BUN_INSTALL/bin:$PATH" +export PATH="$HOME/go/bin:$BUN_INSTALL/bin:$PATH"