From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D0EE01382C5 for ; Sun, 16 May 2021 22:44:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5A53E0802; Sun, 16 May 2021 22:44:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AFB6AE0802 for ; Sun, 16 May 2021 22:44:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 53725340D11 for ; Sun, 16 May 2021 22:44:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B609D737 for ; Sun, 16 May 2021 22:44:48 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1621205067.926e90a18a21208a4a1fa36c755c818f68b477d0.xgqt@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: / X-VCS-Repository: repo/proj/guru X-VCS-Files: .dir-locals.el X-VCS-Directories: / X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 926e90a18a21208a4a1fa36c755c818f68b477d0 X-VCS-Branch: dev Date: Sun, 16 May 2021 22:44:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 02a4204b-3309-4b79-88a3-7100808381ad X-Archives-Hash: a0b4e008b4a0d611ecb3a43955a7112d commit: 926e90a18a21208a4a1fa36c755c818f68b477d0 Author: Maciej Barć riseup net> AuthorDate: Sun May 16 22:44:27 2021 +0000 Commit: Maciej Barć riseup 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ć 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) + ) + ) + )