[Piglit] [PATCH] dir-locals.el: Added emacs setup based (v2)

Andres Gomez agomez at igalia.com
Mon Apr 18 16:37:58 UTC 2016


Based on current conventions at .editorconfig

v2: Changed automatic deletion of trailing white spaces in python
    files upon saving for just highlighting them in any format, as
    suggested by Ilia Mirkin.

Signed-off-by: Andres Gomez <agomez at igalia.com>
---
 .dir-locals.el | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 .dir-locals.el

diff --git a/.dir-locals.el b/.dir-locals.el
new file mode 100644
index 0000000..3bdca17
--- /dev/null
+++ b/.dir-locals.el
@@ -0,0 +1,11 @@
+((nil . ((indent-tabs-mode . t)
+	 (tab-width . 8)
+	 (show-trailing-whitespace . t)))
+ (prog-mode .
+	    ((c-file-style . "linux")))
+ (cmake-mode .
+	     ((cmake-tab-width . 8)))
+ (python-mode .
+	      ((indent-tabs-mode . nil)
+	       (tab-width . 4)))
+ )
-- 
2.8.0.rc3



More information about the Piglit mailing list