dotfiles/config/profile

20 lines
501 B
Text
Raw Permalink Normal View History

2026-08-06 15:50:20 -04:00
# 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
2026-07-30 05:04:14 -04:00
export EDITOR=vim
2026-08-06 17:20:55 -04:00
export VISUAL="emacsclient -c"
2026-07-30 05:04:14 -04:00
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
2026-09-05 20:10:45 -04:00
. "/home/green/.deno/env"