dotfiles/config/profile
2026-08-06 17:20:55 -04:00

13 lines
365 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"