diff --git a/config.fish b/config.fish index 1e5a714..7e52580 100644 --- a/config.fish +++ b/config.fish @@ -19,6 +19,12 @@ dep_fisher # ─────────────────────────────────< Environment-Variables >─────────────────────────────── set -p EDITOR (which nvim) +if command -v codium >/dev/null 2>&1 + alias code="codium" + set -e EDITOR + set -p EDITOR codium +end + # ─< colorized ls >───────────────────────────────────────────────────────────────────────── # ─< lsd >────────────────────────────────────────────────────────────────────────────────── if command -v lsd >/dev/null 2>&1 @@ -118,6 +124,9 @@ if command -v git >/dev/null 2>&1 alias gsu="git pull --recurse-submodule && git submodule foreach git pull && git add . && git commit -m ' updated 📌submodules' && echo '-- Committed changes, pushing now..' && sleep 1 && git push" alias gcm="git commit -m" alias gpu="git push --recurse-submodule=on-demand" + if command -v lazygit >/dev/null 2>&1 + alias lg="lazygit" + end end # ─< fastfetch >────────────────────────────────────────────────────────────────────────────