aboutsummaryrefslogtreecommitdiffstats
path: root/.dir-locals.el
diff options
context:
space:
mode:
authorGravatar Tom Willemse2016-07-17 15:44:27 +0200
committerGravatar Tom Willemse2016-07-17 15:44:27 +0200
commita3c0e67add78ede8c0b1f84cf3f6d3e3b6d1b706 (patch)
tree60ffae78c21c74755c61aa4d5774f471af167019 /.dir-locals.el
parent6c3042724b1d0ede3662717ea7b7ce288bd0ebf5 (diff)
downloadnew-dotfiles-a3c0e67add78ede8c0b1f84cf3f6d3e3b6d1b706.tar.gz
new-dotfiles-a3c0e67add78ede8c0b1f84cf3f6d3e3b6d1b706.zip
Store outline settings in directory instead of file
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el16
1 files changed, 16 insertions, 0 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
new file mode 100644
index 0000000..4f8b608
--- /dev/null
+++ b/.dir-locals.el
@@ -0,0 +1,16 @@
+;;; Directory Local Variables
+;;; For more information see (info "(emacs) Directory Variables")
+
+((emacs-lisp-mode
+ (eval outline-minor-mode 1)
+ (outline-heading-end-regexp . ":\n")
+ (outline-regexp . ";;;+ [^\n]"))
+ (sh-mode
+ (eval outline-minor-mode 1)
+ (outline-heading-end-regexp . ":\n")
+ (outline-regexp . "##+")))
+
+
+
+
+