Initial Commit

This commit is contained in:
2025-05-28 18:22:55 +02:00
commit 9d06207e35
15 changed files with 3023 additions and 0 deletions

1
.alias.d/.alias.d Symbolic link
View File

@ -0,0 +1 @@
/home/csimonis/.dotfiles/.alias.d

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'

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

@ -0,0 +1,5 @@
alias c='clear'
alias apt='sudo apt'
alias apt-get='sudo apt-get'
alias ll='ls -lah'
alias cat='batcat'