diff options
author | Simon Marlow <marlowsd@gmail.com> | 2014-09-26 20:16:37 +0100 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2014-09-29 14:39:42 +0100 |
commit | 23bb90460d7c963ee617d250fa0a33c6ac7bbc53 (patch) | |
tree | 0fce9c24fa0ec61ecbb6dfc696d09ef3418080df /rts/.dir-locals.el | |
parent | 7371d7e2a7f84a0840683d3db9f4556bc358088e (diff) | |
download | haskell-23bb90460d7c963ee617d250fa0a33c6ac7bbc53.tar.gz |
Add emacs indentation/line-length settings
Diffstat (limited to 'rts/.dir-locals.el')
-rw-r--r-- | rts/.dir-locals.el | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/rts/.dir-locals.el b/rts/.dir-locals.el new file mode 100644 index 0000000000..c97af77a80 --- /dev/null +++ b/rts/.dir-locals.el @@ -0,0 +1,12 @@ +;;; Directory Local Variables +;;; See Info node `(emacs) Directory Variables' for more information. + +((c-mode + (fill-column . 80)) + (emacs-lisp-mode + (buffer-file-coding-system . utf-8-unix) + (c-basic-offset . 4) + (indent-tabs-mode))) + + + |