Calling this pivotal macro "def-package!" has frequently been a source of confusion. It is a thin wrapper around use-package, and it should be obvious that it is so. For this reason, and to match the naming convention used with other convenience macros/wrappers, it is now use-package!. Also changes def-package-hook! -> use-package-hook! The old macros are now marked obsolete and will be removed when straight integration is merged.
25 lines
847 B
EmacsLisp
25 lines
847 B
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)
|
|
(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$")
|
|
|
|
(def-project-mode! +ansible-yaml-mode
|
|
:modes '(yaml-mode)
|
|
:add-hooks '(ansible ansible-auto-decrypt-encrypt ansible-doc-mode)
|
|
:files ("roles/"))
|