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.

49 lines
991 B

8 years ago
8 years ago
6 years ago
8 years ago
6 years ago
8 years ago
8 years ago
7 years ago
7 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. # in case its not already thera
  2. alias la='ls -la'
  3. alias sagu='sudo apt update && sudo apt dist-upgrade'
  4. alias sagi='sudo apt install '
  5. alias v='f -e vim' # quick opening files with vim
  6. alias o='a -e xdg-open' # quick opening files with xdg-open
  7. alias j='zz '
  8. # {{{ GIT related
  9. alias gs='git status'
  10. alias gfr='git fetch && git rebase'
  11. alias gl='git log'
  12. alias gc='git commit '
  13. alias ga='git add '
  14. alias gc1='git clone --depth 1 '
  15. alias gco='git checkout '
  16. #}}}
  17. alias mem='cd /dev/shm'
  18. alias svim='sudoedit '
  19. alias down='http --download '
  20. alias p3='python3 '
  21. alias open='xdg-open '
  22. alias -g L='| less'
  23. alias -g G='| grep'
  24. # {{{ Golang
  25. alias gos='cd $GOPTAH/src'
  26. # }}}
  27. # {{{ exa
  28. if hash exa 2&>/dev/null ; then
  29. alias ls='exa '
  30. alias lg='l --git '
  31. alias lt='l --tree '
  32. fi
  33. #}}}
  34. # {{{ docker-compose
  35. if hash docker-compose 2&>/dev/null ; then
  36. alias dcu='sudo docker-compose up'
  37. alias dcs='sudo docker-compose start'
  38. alias dce='sudo docker-compose stop'
  39. fi
  40. # }}}