chore: update dotfiles configuration and aliases management

This commit is contained in:
2025-06-16 11:36:33 +02:00
parent f708bef114
commit 774fd82066
7 changed files with 7 additions and 4 deletions

3
alias.d/composer.sh Executable file
View File

@ -0,0 +1,3 @@
alias cr='composer require'
alias ci='composer install'
alias cu='composer update'

18
alias.d/git.sh Executable file
View File

@ -0,0 +1,18 @@
alias ga='git add'
alias gaa='git add --all'
alias gc='git commit'
alias aic='aicommits'
alias gp='git push'
alias gpf='git push --force'
alias gpu='git pull'
alias gf='git fetch'
alias gl='git log'
alias gb='git branch'
alias gr='git restore'
alias gra='git restore .'
alias gs='git status'
alias gch='git checkout'
alias gst='git stash'
alias gstd='git stash drop'
alias gsta='git stash apply'
alias gstp='git stash pop'

3
alias.d/list.sh Executable file
View File

@ -0,0 +1,3 @@
unalias ls 2>/dev/null
alias ls='exa -lh --icons'

8
alias.d/misc.sh Executable file
View File

@ -0,0 +1,8 @@
alias c='clear'
alias ll='ls -lah'
alias cat='batcat'
if [ ! $UID -eq 0 ]; then
alias apt='sudo apt'
alias apt-get='sudo apt-get'
fi