dotfiles/zsh/.profile

14 lines
431 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
## XDG:
# I keep my XDG files in the normal place, but specifying them in an
# environment variable makes things a little easier/clearer.
export XDG_CONFIG_HOME="${HOME}/.config"
export XDG_DATA_HOME="${HOME}/.local/share"
systemctl --user import-environment PATH