My dotfiles. Period.

hugo.bashrc 501B

12345678910111213141516171819202122232425
  1. #!/bin/bash
  2. ### .... ###
  3. ### BASH ###
  4. ### '''' ###
  5. make_ps1h() {
  6. echo "$lblack\h$normal";
  7. }
  8. # my tools as aliases
  9. alias tap="./node_modules/tap/bin/tap.js"
  10. alias tap-reader="./node_modules/tap/bin/tap-reader.js"
  11. alias diff="colordiff -u"
  12. alias git="git-achievements"
  13. ### ...... ###
  14. ### OTHERS ###
  15. ### '''''' ###
  16. export PATH="$PATH:$HOME/bin/git-achievements/"
  17. export PERL5LIB="$PERL5LIB:$HOME/lib/minions/lib"
  18. export PERL5LIB="$PERL5LIB:$HOME/local/gnucash-importer/lib"
  19. export EDITOR="vim"