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.

37 lines
733 B

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
7 years ago
7 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 v='f -e vim' # quick opening files with vim
  5. alias o='a -e xdg-open' # quick opening files with xdg-open
  6. alias j='zz '
  7. # GIT related
  8. alias gs='git status'
  9. alias gfr='git fetch && git rebase'
  10. alias gl='git log'
  11. alias gc='git commit '
  12. alias ga='git add '
  13. alias gc1='git clone --depth 1 '
  14. alias gco='git checkout '
  15. alias mem='cd /dev/shm'
  16. alias svim='sudoedit '
  17. alias down='http --download '
  18. alias py='python '
  19. alias p3='python3 '
  20. alias open='xdg-open '
  21. # {{{ Golang
  22. alias gos='cd $GOPTAH/src'
  23. # }}}
  24. # {{{ exa
  25. if hash exa 2&>/dev/null ; then
  26. alias ls='exa '
  27. alias lg='l --git '
  28. alias lt='l --tree '
  29. fi
  30. #}}}