Pages

Tuesday, December 5, 2023

some bash rc settings for emacs client on i3

 # start emacs daemon if not already running
if [ -z "$(pgrep -u $USER emacs)" ]; then
/usr/bin/emacs --daemon
fi
# DOOM EMACS
export PATH="$HOME/.emacs.d/bin:$PATH"
# Emacs Client
alias emacs='emacsclient -c -a 'emacs''

 

-----------------

 this helps with the load times

No comments:

Post a Comment