Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: /
Date: Sun, 16 May 2021 22:44:53
Message-Id: 1621205067.926e90a18a21208a4a1fa36c755c818f68b477d0.xgqt@gentoo
1 commit: 926e90a18a21208a4a1fa36c755c818f68b477d0
2 Author: Maciej Barć <xgqt <AT> riseup <DOT> net>
3 AuthorDate: Sun May 16 22:44:27 2021 +0000
4 Commit: Maciej Barć <xgqt <AT> riseup <DOT> net>
5 CommitDate: Sun May 16 22:44:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=926e90a1
7
8 .dir-locals.el: add dir-locals for Emacs
9
10 Signed-off-by: Maciej Barć <xgqt <AT> riseup.net>
11
12 .dir-locals.el | 14 ++++++++++++++
13 1 file changed, 14 insertions(+)
14
15 diff --git a/.dir-locals.el b/.dir-locals.el
16 new file mode 100644
17 index 000000000..17c34c24a
18 --- /dev/null
19 +++ b/.dir-locals.el
20 @@ -0,0 +1,14 @@
21 +(
22 + (find-file
23 + . (
24 + (require-final-newline . t)
25 + (show-trailing-whitespace . t)
26 + (tab-width . 4)
27 + )
28 + )
29 + (ebuild-mode
30 + . (
31 + (indent-tabs-mode . t)
32 + )
33 + )
34 + )