elisp/ansible-init.el
author Luke Hoersten <luke@hoersten.org>
Thu, 02 Oct 2025 10:40:00 -0500
changeset 110 7a84acce27ec
parent 77 c99c95938a05
permissions -rw-r--r--
Cleaned out some last remaining custome variable and ido stuff. Changes: - Added custom.el to .gitignore - Updated gc-cons-threshold comment (removed flx-ido reference) - Changed yasnippet to use yas-completing-read instead of yas-ido-prompt (works with vertico) - Removed commented-out old package list

;; ~/.emacs.d/elisp/ansible-init.el
;; Luke Hoersten <[email protected]>

;; Require packages
(require 'package-require)
(package-require '(yaml-mode jinja2-mode company company-ansible ansible-doc))

(add-hook 'yaml-mode-hook #'ansible-doc-mode)

(message "Loading ansible-init...done")
(provide 'ansible-init)