summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-04-26 15:29:51 -0500
committerCase Duckworth2021-04-26 15:29:51 -0500
commit0013a13d7985fe3b6f58db673f8801fcdadc51c8 (patch)
treeba527b9d2786a4c507dd6101ba1ac1e78305fee4 /init.el
parentUnbind M-s from paredit-mode-map (diff)
downloademacs-0013a13d7985fe3b6f58db673f8801fcdadc51c8.tar.gz
emacs-0013a13d7985fe3b6f58db673f8801fcdadc51c8.zip
Add check for server on startup
Why the hell not?!
Diffstat (limited to 'init.el')
-rw-r--r--init.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/init.el b/init.el index 0f20d12..aadfebf 100644 --- a/init.el +++ b/init.el
@@ -947,3 +947,10 @@ if ripgrep is installed, otherwise `consult-grep'."
947 947
948(when (eq acdw/system :home) 948(when (eq acdw/system :home)
949 (setup (:straight pkgbuild-mode))) 949 (setup (:straight pkgbuild-mode)))
950
951
952;;; Server
953
954(require 'server)
955(unless (server-running-p)
956 (server-start))