summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2020-08-08 13:49:56 +0200
committerDavid Bremner <david@tethera.net>2020-08-09 21:14:36 -0300
commit8cf6af449e90aa62344a2f8ef9bbef1a16a5ead6 (patch)
treeb5ef318bd7d21fdee2534e6782bf1c5bc6e220e6
parent6c84dee53193a78cf797b44d3febcc14488ea6b1 (diff)
.dir-locals.el: Set variables for correct "shell" mode
The major mode used for shell scripts is named 'sh-mode'. 'shell-mode' on the other hand implements an interactive shell in emacs-lisp.
-rw-r--r--.dir-locals.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index fc75ae61..b3ddffe8 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -15,7 +15,7 @@
(emacs-lisp-mode
(indent-tabs-mode . t)
(tab-width . 8))
- (shell-mode
+ (sh-mode
(indent-tabs-mode . t)
(tab-width . 8)
(sh-basic-offset . 4)