featurep! will be renamed modulep! in the future, so it's been deprecated. They have identical interfaces, and can be replaced without issue. featurep! was never quite the right name for this macro. It implied that it had some connection to featurep, which it doesn't (only that it was similar in purpose; still, Doom modules are not features). To undo such implications and be consistent with its namespace (and since we're heading into a storm of breaking changes with the v3 release anyway), now was the best opportunity to begin the transition.
35 lines
1.2 KiB
EmacsLisp
35 lines
1.2 KiB
EmacsLisp
;;; tools/ansible/config.el -*- lexical-binding: t; -*-
|
|
|
|
(use-package! ansible
|
|
:commands ansible-auto-decrypt-encrypt
|
|
:init
|
|
(put 'ansible-vault-password-file 'safe-local-variable #'stringp)
|
|
:config
|
|
(setq ansible-section-face 'font-lock-variable-name-face
|
|
ansible-task-label-face 'font-lock-doc-face)
|
|
(when (modulep! :completion company)
|
|
(set-company-backend! 'ansible 'company-ansible))
|
|
(map! :map ansible-key-map
|
|
:localleader
|
|
:desc "Decrypt buffer" "d" #'ansible-decrypt-buffer
|
|
:desc "Encrypt buffer" "e" #'ansible-encrypt-buffer
|
|
:desc "Look up in Ansible docs" "h" #'ansible-doc))
|
|
|
|
|
|
(after! ansible-doc
|
|
(set-evil-initial-state! '(ansible-doc-module-mode) 'emacs))
|
|
|
|
|
|
(use-package! jinja2-mode
|
|
:mode "\\.j2$"
|
|
:config
|
|
;; The default behavior is to reindent the whole buffer on save. This is
|
|
;; disruptive and imposing. There are indentation commands available; the user
|
|
;; can decide when they want their code reindented.
|
|
(setq jinja2-enable-indent-on-save nil))
|
|
|
|
|
|
(def-project-mode! +ansible-yaml-mode
|
|
:modes '(yaml-mode)
|
|
:add-hooks '(ansible ansible-auto-decrypt-encrypt ansible-doc-mode)
|
|
:files (or "roles/" "tasks/main.yml"))
|