diff options
author | Case Duckworth | 2021-04-26 15:29:51 -0500 |
---|---|---|
committer | Case Duckworth | 2021-04-26 15:29:51 -0500 |
commit | 0013a13d7985fe3b6f58db673f8801fcdadc51c8 (patch) | |
tree | ba527b9d2786a4c507dd6101ba1ac1e78305fee4 | |
parent | Unbind M-s from paredit-mode-map (diff) | |
download | emacs-0013a13d7985fe3b6f58db673f8801fcdadc51c8.tar.gz emacs-0013a13d7985fe3b6f58db673f8801fcdadc51c8.zip |
Add check for server on startup
Why the hell not?!
-rw-r--r-- | init.el | 7 |
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)) | ||