aboutsummaryrefslogtreecommitdiffstats
path: root/oni-highlight-indent-guides.el
diff options
context:
space:
mode:
authorGravatar Tom Willemse2019-05-05 00:03:04 -0700
committerGravatar Tom Willemse2019-05-05 00:03:55 -0700
commit6c16cb94c1b28d340b1a72b92c0e4ef21162bb7b (patch)
tree44857deebdf2ffd15ff398757db48b2cc9d53e28 /oni-highlight-indent-guides.el
parent4c4c552be4ccf19a18d6e9d0b46ff883563ef4f4 (diff)
downloademacs-config-6c16cb94c1b28d340b1a72b92c0e4ef21162bb7b.tar.gz
emacs-config-6c16cb94c1b28d340b1a72b92c0e4ef21162bb7b.zip
Add highlight-indent-guides configuration
Diffstat (limited to 'oni-highlight-indent-guides.el')
-rw-r--r--oni-highlight-indent-guides.el36
1 files changed, 36 insertions, 0 deletions
diff --git a/oni-highlight-indent-guides.el b/oni-highlight-indent-guides.el
new file mode 100644
index 0000000..a695541
--- /dev/null
+++ b/oni-highlight-indent-guides.el
@@ -0,0 +1,36 @@
+;;; oni-highlight-indent-guides.el --- highlight-indent-guides configuration -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2019 Tom Willemse
+
+;; Author: Tom Willemse <tom@ryuslash.org>
+;; Keywords: local
+;; Version: 20190504235807
+;; Package-Requires: (highlight-indent-guides)
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; Configuration for highlight-indent-guides.
+
+;;; Code:
+
+(require 'highlight-indent-guides)
+
+(setq highlight-indent-guides-method 'character)
+
+;;;###autoload(with-eval-after-load 'highlight-indent-guides (require 'oni-highlight-indent-guides))
+
+(provide 'oni-highlight-indent-guides)
+;;; oni-highlight-indent-guides.el ends here