dotfiles/config/profile
2026-09-05 20:10:45 -04:00

19 lines
501 B
Bash

# Start Emacs daemon if not already running (works with or without X)
if ! emacsclient -e nil 2>/dev/null; then
emacs --daemon 2>/dev/null &
fi
export EDITOR=vim
export VISUAL="emacsclient -c"
export BROWSER=nyxt
export PAGER=bat
export SHELL=/usr/bin/fish
export TERMINAL=wezterm
export PATH="$HOME/.dotfiles/scripts:$PATH"
export PATH="/usr/local/bin:$PATH"
# Added by LM Studio CLI (lms)
export PATH="$PATH:/home/green/.lmstudio/bin"
# End of LM Studio CLI section
. "/home/green/.deno/env"