How to start emacs server only if it is not started? April 26, 2023 by Tarik This code starts the server only if it’s not running: (load "server") (unless (server-running-p) (server-start))