aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'init.el')
-rw-r--r--init.el19
1 files changed, 19 insertions, 0 deletions
diff --git a/init.el b/init.el
index 08fc41d..fe9009c 100644
--- a/init.el
+++ b/init.el
@@ -1099,3 +1099,22 @@
1099 1099
1100(global-set-key (kbd "M-;") 'comment-line) 1100(global-set-key (kbd "M-;") 'comment-line)
1101(global-set-key (kbd "C-M-;") 'comment-or-uncomment-region) 1101(global-set-key (kbd "C-M-;") 'comment-or-uncomment-region)
1102
1103
1104;; ---------------------------------------------------------------------
1105;;; End of MMOSMacs configuration
1106;; ------------------------------
1107
1108;; ---------------------------------
1109;; Start Emacs Server
1110;; ------------------
1111;; This is the last step of MMOSMacs
1112;; configuration.
1113;; ---------------------------------
1114
1115(add-hook 'after-init-hook (lambda ()
1116 (require 'server)
1117 (unless (server-running-p)
1118 (server-start))))
1119
1120;;; init.el ends here