Move server starting part from configuration.org to init.el
This commit is contained in:
parent
18d06a4aea
commit
d0d69cb31a
@ -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
11
init.el
@ -1909,7 +1909,14 @@ Intended as a value for `bug-referecne-url-format'."
|
|||||||
:map goto-map
|
:map goto-map
|
||||||
("SPC" . gpolonkai/goto-next-char))
|
("SPC" . gpolonkai/goto-next-char))
|
||||||
|
|
||||||
;; I started moving my configuration to this Org file. It’s easier to document this way.
|
;; And finally, start the Emacs server
|
||||||
(org-babel-load-file (expand-file-name "configuration.org" user-emacs-directory))
|
;;
|
||||||
|
;; 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
|
;;; init.el ends here
|
||||||
|
Loading…
x
Reference in New Issue
Block a user