summaryrefslogtreecommitdiff
path: root/.dir-locals.el
diff options
context:
space:
mode:
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el22
1 files changed, 0 insertions, 22 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
deleted file mode 100644
index e523528e2..000000000
--- a/.dir-locals.el
+++ /dev/null
@@ -1,22 +0,0 @@
-;; Configure emacs' treatment of tabs.
-;;
-;; See
-;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Directory-Variables.html
-;; for a description of this file.
-;;
-;; The 'nil' below applies to all modes.
-((nil . ((indent-tabs-mode . t)
- (tab-width . 2)))
- (haskell-mode . (
- ;; Highlight leading space characters, to avoid indenting with
- ;; spaces.
- ;;
- ;; Emacs will prompt you about this, saying it's unsafe, but
- ;; you can permanently store an exception by pressing "!",
- ;; which inserts
- ;;
- ;; (safe-local-variable-values . (quote ((eval highlight-regexp "^ *"))))
- ;;
- ;; in your ~/.emacs ... except the exception doesn't work, and
- ;; emacs still asks you on each file you open :P
- (eval . (highlight-regexp "^ *")))))