Move server starting part from configuration.org to init.el

This commit is contained in:
Gergely Polonkai 2025-06-03 18:03:51 +02:00
parent 18d06a4aea
commit d0d69cb31a
No known key found for this signature in database
GPG Key ID: 38F402C8471DDE93
2 changed files with 9 additions and 11 deletions

View File

@ -1,9 +0,0 @@
* 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
(require 'server)
(unless (server-running-p)
(server-start))
#+end_src

11
init.el
View File

@ -1909,7 +1909,14 @@ Intended as a value for `bug-referecne-url-format'."
:map goto-map
("SPC" . gpolonkai/goto-next-char))
;; I started moving my configuration to this Org file. Its easier to document this way.
(org-babel-load-file (expand-file-name "configuration.org" user-emacs-directory))
;; 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.
(require 'server)
(unless (server-running-p)
(server-start))
;;; init.el ends here