aboutsummaryrefslogtreecommitdiffstats
path: root/oni-yaml.el
diff options
context:
space:
mode:
authorGravatar Tom Willemse2020-07-19 21:32:50 -0700
committerGravatar Tom Willemse2020-07-19 21:32:50 -0700
commit5145f6f3404faeef659879a92f8018a94b86644d (patch)
treec7552e8c4afe7c222f7e073fae8891206c123565 /oni-yaml.el
parent0c528af13184dfe719a8e239fe01b8d226ad776c (diff)
downloademacs-config-5145f6f3404faeef659879a92f8018a94b86644d.tar.gz
emacs-config-5145f6f3404faeef659879a92f8018a94b86644d.zip
Enable ‘electric-indent-mode’ and ‘electric-pair-mode’ in Yaml files
Diffstat (limited to 'oni-yaml.el')
-rw-r--r--oni-yaml.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/oni-yaml.el b/oni-yaml.el
index b838062..5ed5ca0 100644
--- a/oni-yaml.el
+++ b/oni-yaml.el
@@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2019.1210.231537
+;; Version: 2020.0719.212242
;; Package-Requires: (yaml-mode oni-flycheck oni-fci oni-highlight-indent-guides flycheck-yamllint indent-tools yaml-imenu)
;; This program is free software; you can redistribute it and/or modify
@@ -37,10 +37,12 @@
(define-key yaml-mode-map (kbd "C-c >") 'indent-tools-hydra/body)
+(add-hook 'yaml-mode-hook 'electric-indent-local-mode)
+(add-hook 'yaml-mode-hook 'electric-pair-local-mode)
(add-hook 'yaml-mode-hook 'fci-mode)
(add-hook 'yaml-mode-hook 'highlight-indent-guides-mode)
-(add-hook 'yaml-mode-hook 'yaml-imenu-enable)
(add-hook 'yaml-mode-hook 'oni-yaml--auto-fill-mode)
+(add-hook 'yaml-mode-hook 'yaml-imenu-enable)
(flycheck-yamllint-setup)