11 lines
287 B
Bash
11 lines
287 B
Bash
## PATH:
|
|
# Add "$HOME/usr/bin" to $PATH because that is where I keep all of my
|
|
# personal utilities and helper commands.
|
|
PATH="${HOME}/usr/bin:${PATH}"
|
|
export PATH
|
|
|
|
## Local Variables:
|
|
## eval: (outline-minor-mode 1)
|
|
## outline-regexp: "##+"
|
|
## outline-heading-end-regexp: ":\n"
|
|
## End:
|