aboutsummaryrefslogtreecommitdiff
path: root/.profile
blob: 0c5773bad01491c4f38018119d08cdc92ae151d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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