From 56861af5a45437c7f329b9aee0df5136461bd9db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=E1=BA=A5n-Anh=20Nguy=E1=BB=85n?= Date: Sat, 21 Mar 2020 14:52:19 +0700 Subject: [PATCH] Specify code style via .dir-locals.el --- .dir-locals.el | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .dir-locals.el diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 00000000..e50ec5d4 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,9 @@ +;;; Directory Local Variables +;;; For more information see (info "(emacs) Directory Variables") + +((emacs-lisp-mode + (indent-tabs-mode . nil) + (sentence-end-double-space . nil) + (fill-column . 80) + (emacs-lisp-docstring-fill-column . 80) + (comment-fill-column . 80)))