diff options
author | Justine Smithies <justine@openbsd-desktop.localdomain> | 2025-10-07 20:18:35 +0100 |
---|---|---|
committer | Justine Smithies <justine@openbsd-desktop.localdomain> | 2025-10-07 20:18:35 +0100 |
commit | 4e1285361224cd71f2ba8893e4c8b0be3b3fc0db (patch) | |
tree | 052a28b5488ed638bbef508a19d4e377bf4f8e3b | |
parent | 3531e0908e6c106666320c9c773aa80ce10db87b (diff) |
Initial commit
-rw-r--r-- | .profile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.profile b/.profile new file mode 100644 index 0000000..9d4ddba --- /dev/null +++ b/.profile @@ -0,0 +1,17 @@ +# $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 + +PAGER='less'; export PAGER + +ENV=$HOME/.kshrc; export ENV + |