diff options
-rw-r--r-- | init.el | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -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 | ||