restructured repo

This commit is contained in:
pika 2024-05-21 12:15:01 +02:00
parent b5db7b07c8
commit 14f1e2160e

View file

@ -95,7 +95,7 @@ end
# ─< lsd >────────────────────────────────────────────────────────────────────────────────── # ─< lsd >──────────────────────────────────────────────────────────────────────────────────
if command -v lsd >/dev/null 2>&1 if command -v lsd >/dev/null 2>&1
alias ls='lsd -l' alias ls='lsd -l'
alias ll='pwd && lsd -lA && pwd' alias ll='pwd && lsd -lA'
alias tree='lsd --tree' alias tree='lsd --tree'
set -a toolbox " ls is using $(which lsd) set -a toolbox " ls is using $(which lsd)
" "
@ -194,11 +194,11 @@ if command -v git >/dev/null 2>&1
alias gs='git status' alias gs='git status'
alias gf='git fetch && git merge origin/main' alias gf='git fetch && git merge origin/main'
alias gc='git clone' alias gc='git clone'
alias gsu='git submodule update --remote --recursive && git submodule sync --recursive && git status'
alias gsp='git pull --recurse-submodule --ff && git status'
alias ga='git add' alias ga='git add'
alias gcm='git commit'
alias gp='git pull --recurse-submodule' alias gp='git pull --recurse-submodule'
alias gsu='git submodule update --remote --recursive && git submodule sync --recursive'
alias gsp='git pull --recurse-submodule --ff'
alias gcm='git commit'
alias gpu='git push --recurse-submodule=on-demand' alias gpu='git push --recurse-submodule=on-demand'
end end