Final touches

This commit is contained in:
2023-10-22 06:57:49 +02:00
parent 5351cde10d
commit 6a50199652

View File

@@ -3224,13 +3224,13 @@ Because thats still my favourite language.
("SPC" . gpolonkai/goto-next-char)) ("SPC" . gpolonkai/goto-next-char))
#+end_src #+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 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. 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) (require 'server)
(unless (server-running-p) (unless (server-running-p)
(server-start)) (server-start))
#+END_SRC #+end_src