aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2020-02-29 13:48:39 -0800
committerGravatar Tom Willemse2020-02-29 13:48:39 -0800
commit742f8b4891fb7fcbd942b3e6a434d812c563fda2 (patch)
treef597080def4d956509d1c8394f13d777e8ea530a
parentfa2264a94c8ab0866ee43cf0bf6652cec16dd401 (diff)
downloademacs-config-742f8b4891fb7fcbd942b3e6a434d812c563fda2.tar.gz
emacs-config-742f8b4891fb7fcbd942b3e6a434d812c563fda2.zip
Enable smartparens mode in C#
-rw-r--r--oni-csharp.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/oni-csharp.el b/oni-csharp.el
index b718c6c..954ab70 100644
--- a/oni-csharp.el
+++ b/oni-csharp.el
@@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2020.0229.133028
+;; Version: 2020.0229.134806
;; Package-Requires: (csharp-mode omnisharp oni-company oni-flycheck)
;; This program is free software; you can redistribute it and/or modify
@@ -92,6 +92,7 @@
(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)
+(add-hook 'csharp-mode-hook 'smartparens-mode)
;;;###autoload
(add-to-list 'auto-mode-alist '("\\.xaml\\'" . nxml-mode))