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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
77
c99c95938a05 Added ansible init.
Luke Hoersten <Luke@Hoersten.org>
parents:
diff changeset
     1
;; ~/.emacs.d/elisp/ansible-init.el
c99c95938a05 Added ansible init.
Luke Hoersten <Luke@Hoersten.org>
parents:
diff changeset
     2
;; Luke Hoersten <[email protected]>
c99c95938a05 Added ansible init.
Luke Hoersten <Luke@Hoersten.org>
parents:
diff changeset
     3
c99c95938a05 Added ansible init.
Luke Hoersten <Luke@Hoersten.org>
parents:
diff changeset
     4
;; Require packages
c99c95938a05 Added ansible init.
Luke Hoersten <Luke@Hoersten.org>
parents:
diff changeset
     5
(require 'package-require)
c99c95938a05 Added ansible init.
Luke Hoersten <Luke@Hoersten.org>
parents:
diff changeset
     6
(package-require '(yaml-mode jinja2-mode company company-ansible ansible-doc))
c99c95938a05 Added ansible init.
Luke Hoersten <Luke@Hoersten.org>
parents:
diff changeset
     7
c99c95938a05 Added ansible init.
Luke Hoersten <Luke@Hoersten.org>
parents:
diff changeset
     8
(add-hook 'yaml-mode-hook #'ansible-doc-mode)
c99c95938a05 Added ansible init.
Luke Hoersten <Luke@Hoersten.org>
parents:
diff changeset
     9
c99c95938a05 Added ansible init.
Luke Hoersten <Luke@Hoersten.org>
parents:
diff changeset
    10
(message "Loading ansible-init...done")
c99c95938a05 Added ansible init.
Luke Hoersten <Luke@Hoersten.org>
parents:
diff changeset
    11
(provide 'ansible-init)