From 97ead8c8e67b7d9b8cacf3a3c4143ab4d3212331 Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 14 Oct 2020 21:37:07 +0200 Subject: [PATCH] Emacs: Add i3wm-config-mode. --- init.d/text/misc.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/init.d/text/misc.el b/init.d/text/misc.el index 9a14e4b..a0661c7 100644 --- a/init.d/text/misc.el +++ b/init.d/text/misc.el @@ -1,6 +1,6 @@ ;;; misc.el --- Miscellaneous file formats. -*- lexical-binding: t; -*- -;; Time-stamp: <2020-10-14T00:08:06+0200> +;; Time-stamp: <2020-10-14T21:06:39+0200> ;;; Commentary: @@ -213,5 +213,10 @@ ;; udev rule files. (use-package udev-mode) +;; i3 configuration files. +(use-package i3wm-config-mode + :after (rainbow-mode) + :hook (i3wm-config-mode . rainbow-mode)) + (provide 'text/misc) ;;; misc.el ends here