From f1a464ca4b002c9b7fad73ed97d562b979319931 Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Thu, 5 Dec 2024 14:56:57 -0500 Subject: Unified Profile --- .config/profile | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .config/profile (limited to '.config/profile') diff --git a/.config/profile b/.config/profile new file mode 100644 index 0000000..c9b6ef4 --- /dev/null +++ b/.config/profile @@ -0,0 +1,26 @@ +eval "$(/opt/homebrew/bin/brew shellenv)" +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= +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 + -- cgit v1.2.3