Final touches

This commit is contained in:
Gergely Polonkai 2023-10-22 06:57:49 +02:00
parent 5351cde10d
commit 6a50199652
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4
1 changed files with 3 additions and 3 deletions

View File

@ -3224,13 +3224,13 @@ Because thats still my favourite language.
("SPC" . gpolonkai/goto-next-char))
#+end_src
* And finally, server mode
* And finally, start the Emacs server
Sometimes i start an ~emacsclient~ process, like for editing a commit message or something
similar. As my startup time is pretty long, waiting for everything to complete is undesirable.
#+BEGIN_SRC emacs-lisp
#+begin_src emacs-lisp
(require 'server)
(unless (server-running-p)
(server-start))
#+END_SRC
#+end_src