- Changes are best made in
settings.org. - A neat way to avoid the start up of ordinary
emacsis to run anemacsserver
emacs --daemonThen a client can quickly connect to the server.
emacsclient -nwTo make emacsclient the default method for interacting with emacs,
I added an alias to .bashrc.
alias emacs='emacsclient -nw'Note that whenever the configuration of emacs is changed, the server
needs to be restarted rather than the client. To conveniently
(re)start emacs, I added another alias to .bashrc
alias startEmacs='emacsclient -e "(kill-emacs)"; /usr/bin/emacs --daemon'