diff --git a/configuration.org b/configuration.org deleted file mode 100644 index d243356..0000000 --- a/configuration.org +++ /dev/null @@ -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 diff --git a/init.el b/init.el index 49f2021..a41f4c5 100644 --- a/init.el +++ b/init.el @@ -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. It’s 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