All of my important config files
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.

75 lines
1.8 KiB

7 years ago
4 years ago
7 years ago
5 years ago
7 years ago
3 years ago
2 years ago
5 years ago
7 years ago
3 years ago
7 years ago
3 years ago
5 years ago
6 years ago
5 years ago
4 years ago
4 years ago
4 years ago
  1. # in case its not already thera
  2. alias la='ls -la'
  3. alias sagu='sudo apt-fast update && sudo apt-fast dist-upgrade && flatpak update'
  4. alias sagi='sudo apt-fast install '
  5. alias notes='vim "+:NV"'
  6. alias slog='sudo less /var/log/syslog'
  7. alias v='f -e vim' # quick opening files with vim
  8. alias o='a -e xdg-open' # quick opening files with xdg-open
  9. alias j='zz '
  10. # {{{ GIT related
  11. alias gs='git status'
  12. alias gfr='git fetch && git rebase'
  13. alias gl='git log'
  14. alias gc='git commit '
  15. alias ga='git add '
  16. alias gc1='git clone --depth 1 '
  17. alias gco='git checkout '
  18. alias gpt='git push && git push --tags'
  19. alias gla='git log --graph --decorate --oneline --all'
  20. #}}}
  21. alias mem='cd /dev/shm'
  22. alias svim='sudoedit '
  23. alias down='xh --download '
  24. alias p3='python3 '
  25. alias py='/usr/bin/env python3 '
  26. alias -g L='| less'
  27. alias -g G='| grep'
  28. # {{{ Golang
  29. alias gos='cd $GOPTAH/src'
  30. # }}}
  31. # {{{ exa
  32. if hash exa 2&>/dev/null ; then
  33. alias ls='exa '
  34. alias lg='l --git '
  35. alias lt='l --tree '
  36. fi
  37. #}}}
  38. alias dcu='docker-compose up'
  39. alias dcs='docker-compose start'
  40. alias dce='docker-compose stop'
  41. alias rs='rsync -aAxv --progress '
  42. alias gcc='gcc -Wall -Wextra '
  43. alias mail='neomutt'
  44. alias sys='sudo systemctl '
  45. alias jour='sudo journalctl '
  46. alias usys='systemctl --user '
  47. alias ujour='journalctl --user '
  48. alias killbg='kill ${${(v)jobstates##*:*:}%=*}'
  49. alias dns='dig +noall +answer any '
  50. alias standup='cd /home/schneider/git/ && git standup -m 8 -d 7 -s'
  51. alias fuu='fuck'
  52. alias jswatch='/home/schneider/.yarn/bin/watch '
  53. function ls3() {
  54. AWS_ACCESS_KEY_ID="S3RVER" AWS_SECRET_ACCESS_KEY="S3RVER" aws --endpoint-url http://0.0.0.0:4568 s3 $@
  55. }
  56. alias backend='aws --profile backend'
  57. alias madness='docker run --rm -it -v $PWD:/docs -p 3005:3000 dannyben/madness'
  58. # {{{ yarn
  59. alias yrb='yarn run build'
  60. #}}}