spacemacs/layers/+config-files/ansible/packages.el

36 lines
1.2 KiB
EmacsLisp
Raw Normal View History

2015-02-18 03:22:53 +00:00
;;; packages.el --- Ansible Layer extensions File for Spacemacs
2015-02-17 20:11:06 +00:00
;;
;; Copyright (c) 2012-2014 Sylvain Benner
;; Copyright (c) 2015 Brian Hicks & Contributors
;;
;; Author: Brian Hicks <brian@brianthicks.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq ansible-packages '(ansible
ansible-doc))
2015-02-17 20:11:06 +00:00
(defun ansible/init-ansible ()
(use-package ansible
:defer t
:init (progn
(with-eval-after-load 'yaml-mode
(add-hook 'yaml-mode-hook 'ansible/ansible-maybe-enable))
2015-02-17 20:11:06 +00:00
;; ansible-mode requires ac-user-dictionary-files. If the
;; config is using company-mode this variable will not be
;; set, so we set it to a dummy value.
;;
;; Tracking here:
;; https://github.com/k1LoW/emacs-ansible/issues/2
(when (member 'company-mode dotspacemacs-configuration-layers)
(setq ac-user-dictionary-files '())))))
(defun ansible/init-ansible-doc ()
(use-package ansible-doc
:defer t
:init (with-eval-after-load 'yaml-mode
(add-hook 'yaml-mode-hook 'ansible/ansible-doc-maybe-enable))))