From 3e21fca289240f04a39f76fe4317d7a6ef79424f Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Wed, 5 Feb 2020 22:42:33 -0800 Subject: [PATCH] =?UTF-8?q?Add=20=E2=80=98rainbow-delimiters-mode=E2=80=99?= =?UTF-8?q?=20to=20C#=20buffers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- oni-csharp.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/oni-csharp.el b/oni-csharp.el index 74d1fb5..195765f 100644 --- a/oni-csharp.el +++ b/oni-csharp.el @@ -4,7 +4,7 @@ ;; Author: Tom Willemse ;; Keywords: local -;; Version: 2020.0128.221359 +;; Version: 2020.0205.224224 ;; Package-Requires: (csharp-mode omnisharp oni-company oni-flycheck) ;; This program is free software; you can redistribute it and/or modify @@ -22,7 +22,7 @@ ;;; Commentary: -;; My C# configuration. +;; My C# configuration. This configuration enables ‘rainbow-delimiters-mode’. ;;; Code: @@ -90,6 +90,7 @@ (add-hook 'csharp-mode-hook 'flycheck-mode) (add-hook 'csharp-mode-hook 'omnisharp-mode) (add-hook 'csharp-mode-hook 'oni-csharp--auto-fill-mode) +(add-hook 'csharp-mode-hook 'rainbow-delimiters-mode) ;;;###autoload (add-to-list 'auto-mode-alist '("\\.xaml\\'" . nxml-mode))