summaryrefslogtreecommitdiff
path: root/.dir-locals.el
diff options
context:
space:
mode:
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el9
1 files changed, 7 insertions, 2 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index ce251c0a..db8dc273 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -1,3 +1,8 @@
-;; bash-completion shell-script mode additional settings for Emacs
+;;; Directory Local Variables
+;;; For more information see (info "(emacs) Directory Variables")
-((sh-mode . ((sh-indent-comment . t))))
+((python-mode
+ (eval add-hook 'before-save-hook 'blacken-buffer nil t))
+ (sh-mode
+ (flycheck-sh-bash-args "-O" "extglob")
+ (sh-indent-comment . t)))