diff options
| author | Justine Smithies <justine@smithies.me.uk> | 2025-11-04 20:26:38 +0000 |
|---|---|---|
| committer | Justine Smithies <justine@smithies.me.uk> | 2025-11-04 20:26:38 +0000 |
| commit | de28f72dc70e9f0ce45a4836c9e97a2e94c64862 (patch) | |
| tree | 6814f9688d52b9613726999361834bcba421fcc8 | |
| parent | 0f6a19c3d1cca6c8f4d7a6c2233a96c9ee68a8a9 (diff) | |
Initial commit
| -rw-r--r-- | .profile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.profile b/.profile new file mode 100644 index 0000000..0c5773b --- /dev/null +++ b/.profile @@ -0,0 +1,25 @@ +# $OpenBSD: dot.profile,v 1.8 2022/08/10 07:40:37 tb Exp $ +# +# sh/ksh initialization + +PATH=$HOME/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin:/usr/local/bin:/usr/local/sbin:$HOME/.local/bin +export PATH HOME TERM + +# Path to Helix binary +export PATH=$PATH:~/.cargo/bin/ + +# Allow color output in vt +# export TERM=wsvt25 +# This is to check the TERM and change accordingly. +if [[ $TERM = xterm ]]; + then export TERM="xterm-256color"; +else + export TERM="wsvt25"; +fi +PAGER='less'; export PAGER + +# Stop core dumps in the home directory +ulimit -Sc 0 + +ENV=$HOME/.kshrc; export ENV + |
