summaryrefslogtreecommitdiff
path: root/.config/.profile
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2024-12-06 12:45:08 -0500
committerJacob McDonnell <jacob@jacobmcdonnell.com>2024-12-06 12:45:08 -0500
commit294dedf9db379e9a14d9256245ee231f127ac722 (patch)
treedd6eb20047a2dd387b6ef3b7bbf3e6de0933bb42 /.config/.profile
parent2dc17ffc2a00a3c1464a988caa9897176017d0af (diff)
Bug Fixes
Diffstat (limited to '.config/.profile')
-rw-r--r--.config/.profile26
1 files changed, 26 insertions, 0 deletions
diff --git a/.config/.profile b/.config/.profile
new file mode 100644
index 0000000..6cffacf
--- /dev/null
+++ b/.config/.profile
@@ -0,0 +1,26 @@
+export PLAN9=$HOME/personal/plan9
+export PATH=~/personal/bin:~/.local/bin:$PATH:$HOME/go/bin:$PLAN9/bin
+
+export EDITOR=nvim
+export HOMEBREW_EDITOR=nvim
+
+# Shell settings
+export shColor=green
+export OS="$(uname -s)"
+if [[ $OS == "Darwin" ]]; then
+ export comSym=
+ eval "$(/opt/homebrew/bin/brew shellenv)"
+elif [[ $OS == "Linux" ]]; then
+ export comSym=λ
+fi
+
+# Setting up XDG Dirs
+export XDG_CONFIG_HOME=$HOME/.config
+export XDG_CACHE_HOME=$HOME/.cache
+export XDG_DATA_HOME=$HOME/.local/share
+
+# Moving Folder and Files from ~/
+export LESSHISTFILE=-
+export ENV="$XDG_CONFIG_HOME"/shells/ksh/kshrc
+export ZDOTDIR="$XDG_CONFIG_HOME"/shells/zsh
+