diff options
Diffstat (limited to 'home/.profile')
-rw-r--r-- | home/.profile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/home/.profile b/home/.profile new file mode 100644 index 00000000..c0c9ce66 --- /dev/null +++ b/home/.profile @@ -0,0 +1,21 @@ +_PATH=$PATH PATH= +path() { [ -d "$1" ] && PATH="${PATH}${PATH:+:}${1}"; } +for prefix in '' /usr/local /opt/local /usr ~/.local; do + path "${prefix}/sbin" + path "${prefix}/bin" +done +path /usr/games + +export PAGER=less +export LESS=FRXx4 +export EDITOR=nvim +export MANPAGER='nvim +Man!' +export MANSECT=2:3:1:8:6:5:7:4:9 +export CLICOLOR=1 +export GPG_TTY=$(tty) +export NETHACKOPTIONS='pickup_types:$!?+/=, color, DECgraphics' + +[ -e /usr/share/mk/sys.mk ] || export CFLAGS=-O +[ -d /usr/home ] && cd + +export ENV=~/.shrc |