summary refs log tree commit diff
path: root/home/.profile
diff options
context:
space:
mode:
Diffstat (limited to 'home/.profile')
-rw-r--r--home/.profile17
1 files changed, 11 insertions, 6 deletions
diff --git a/home/.profile b/home/.profile
index d719799b..7d4ba822 100644
--- a/home/.profile
+++ b/home/.profile
@@ -1,6 +1,6 @@
 _PATH=$PATH PATH=
-path() { [ -d "$1" ] && PATH="${PATH}${PATH:+:}${1}"; }
-for prefix in '' /usr/local /opt/local /usr ~/.local; do
+path() { test -d "$1" && PATH="${PATH}${PATH:+:}${1}"; }
+for prefix in '' /usr/local /opt/local /usr ~/.local ~/.cargo; do
 	path "${prefix}/sbin"
 	path "${prefix}/bin"
 done
@@ -9,15 +9,20 @@ path /usr/games
 export MANPATH=:~/.local/share/man
 
 export EDITOR=vi
-type nvi >/dev/null && EDITOR=nvi
-export EXINIT='set ai ic sm sw=4 ts=4 para=BlBdPpIt sect=ShSs | map gg 1G'
+command -v nvi >/dev/null && EDITOR=nvi
+export EXINIT='set ai extended iclower sm sw=4 ts=4 para=BlBdPpIt sect=ShSs
+map gg 1G'
 export PAGER=less
 export LESS=FRXix4
 export CLICOLOR=1
 export MANSECT=2:3:1:8:6:5:7:4:9
 export NETHACKOPTIONS='pickup_types:$!?+/=, color, DECgraphics'
+command -v diff-highlight >/dev/null &&
+export GIT_PAGER="diff-highlight | $PAGER"
 
-[ -e /usr/share/mk/sys.mk ] || export CFLAGS=-O
-[ -d /usr/home ] && cd
+test -e /usr/share/mk/sys.mk || export CFLAGS=-O
+test -d /usr/home && cd
+
+test -f ~/.profile.local && . ~/.profile.local
 
 export ENV=~/.shrc