elisp/ansible-init.el
author Luke Hoersten <luke@hoersten.org>
Thu, 02 Oct 2025 09:50:40 -0500
changeset 105 e45e60614994
parent 77 c99c95938a05
permissions -rw-r--r--
Moved from ido and smex to vertico, orderless, consult, marginalia for auto complete. Packages updated: - Removed: flx-ido, smex - Added: vertico, orderless, consult, marginalia Configuration changes: - vertico-mode replaces ido-mode for completion UI - orderless provides fuzzy matching (replaces flx-ido) - marginalia-mode adds helpful annotations - consult-buffer replaces default buffer switching (better than ido) - consult-ripgrep replaces plain rg command (adds preview) - consult-yank-pop on M-y (enhanced kill-ring browsing) Your keybindings: - M-x now uses vertico (no special binding needed) - C-x b → consult-buffer (enhanced) - C-c g → consult-ripgrep (with live preview) - M-y → consult-yank-pop (browse kill ring) Please enter the commit message for your changes. Lines starting

;; ~/.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)