Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
799 B

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. #!/usr/bin/zsh
  2. alias feh="feh --scale-down --auto-zoom"
  3. alias cclear="$(which clear)"
  4. alias clear="clear && paleofetch"
  5. alias neofetch="neofetch --ascii ~/.config/neofetch/ascii.txt"
  6. alias open=xdg-open
  7. alias rm="rm -i"
  8. alias clip="xclip -selection clipboard"
  9. alias g="git "
  10. alias t="TERM=screen-256color-bce tmux"
  11. alias tn="TERM=screen-256color-bce tmux new -s "
  12. alias tat="TERM=screen-256color-bce tmux a -t "
  13. alias yain="yay -Syu "
  14. alias ls="ls --color"
  15. alias yay="yay --sudoloop"
  16. alias lf=lf-ueberzug
  17. # Suffix aliases
  18. alias -g G=" | rg"
  19. alias gshh="gcloud cloud-shell ssh --authorize-session"
  20. # Git
  21. alias ga="git add"
  22. alias gcl="git clone --recursive"
  23. alias gc="git commit"
  24. alias gcm="git commit -m"
  25. alias gp="git push"
  26. alias gpall="git remote | xargs -I R git push R"
  27. alias gpl="git pull"