summaryrefslogtreecommitdiffstats
path: root/.emacs.d
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-12-02 14:28:21 +0100
committerGravatar Tom Willemse2013-12-02 14:28:21 +0100
commitbef39438dbf9d97c3bb398ae7a7913da0f937ca8 (patch)
tree8bea035db83aa2cc4c36e83eb1fbfc25a03a9d95 /.emacs.d
parent23040670f8f455482ed0252f33ad78b2309a4645 (diff)
downloademacs-bef39438dbf9d97c3bb398ae7a7913da0f937ca8.tar.gz
emacs-bef39438dbf9d97c3bb398ae7a7913da0f937ca8.zip
Start using outline
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/init.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 338e417..80ebcac 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -2,6 +2,7 @@
;;; Commentary:
;;; Code:
+;;;; defmacro
(defmacro stante-after (feature &rest forms)
"After FEATURE is loaded, evaluate FORMS.
@@ -26,6 +27,7 @@ FEATURE may be an unquoted feature symbol or a file name, see
(declare (indent 0))
`(add-hook 'emacs-startup-hook #'(lambda () ,@body)))
+;;;; defun
(eval-and-compile
(defun loadpath-add-and-autoload (path)
"Add PATH to `load-path' and load a `loaddefs.el' if it exists."
@@ -71,7 +73,7 @@ FEATURE may be an unquoted feature symbol or a file name, see
(ignore frame)
(unless setp
(run-at-time .1 nil (lambda () (setq setp (load-theme theme t)))))))
-
+
(if (daemonp)
(add-hook 'after-make-frame-functions #'init-set-theme)
(eval-after-init (load-theme theme t))))
@@ -1314,3 +1316,7 @@ Toggle mode `persistent-outline-mode' according to the variable
(provide 'init)
;;; init.el ends here
+
+;; Local Variables:
+;; outline-regexp: ";;;;*"
+;; End: