commit: 926e90a18a21208a4a1fa36c755c818f68b477d0 Author: Maciej Barć <xgqt <AT> riseup <DOT> net> AuthorDate: Sun May 16 22:44:27 2021 +0000 Commit: Maciej Barć <xgqt <AT> riseup <DOT> net> CommitDate: Sun May 16 22:44:27 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=926e90a1
.dir-locals.el: add dir-locals for Emacs Signed-off-by: Maciej Barć <xgqt <AT> riseup.net> .dir-locals.el | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 000000000..17c34c24a --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,14 @@ +( + (find-file + . ( + (require-final-newline . t) + (show-trailing-whitespace . t) + (tab-width . 4) + ) + ) + (ebuild-mode + . ( + (indent-tabs-mode . t) + ) + ) + )
