From 5145f6f3404faeef659879a92f8018a94b86644d Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sun, 19 Jul 2020 21:32:50 -0700 Subject: Enable ‘electric-indent-mode’ and ‘electric-pair-mode’ in Yaml files --- oni-yaml.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'oni-yaml.el') 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 ;; 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) -- cgit v1.2.3-54-g00ecf