.bash_profile 712 B

123456789101112131415161718192021222324
  1. #!/bin/sh
  2. # .bash_profile - My Bash prompt
  3. #
  4. # Written in 2017 by Caleb Herbert <csh@bluehome.net>
  5. #
  6. # To the extent possible under law, the author(s) have dedicated all
  7. # copyright and related and neighboring rights to this software to the
  8. # public domain worldwide. This software is distributed without any
  9. # warranty.
  10. #
  11. # You should have received a copy of the CC0 Public Domain Dedication
  12. # along with this software. If not, see
  13. # <http://creativecommons.org/publicdomain/zero/1.0/>.
  14. # In the name of Emacs, the One True Editor.
  15. export EDITOR='emacsclient -c'
  16. # export PS1="\w> "
  17. # export PS1="\u:\w> "
  18. # export PS1="\u:\w \D{%H:%M}> "
  19. export PATH="$HOME/bin:$PATH"
  20. source $HOME/.guix-profile/etc/profile