spacemacs/layers/+tools/systemd/packages.el
syl20bnr 29c78ce841 Defer packages by default using use-package-always-defer
Warning now `:defer t` is implied, to force a package to load `:demand t` is
now necessary.
2018-02-27 23:32:52 -05:00

31 lines
834 B
EmacsLisp

;;; packages.el --- systemd layer packages file for Spacemacs.
;;
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
;;
;; Author: Fabien Dubosson <fabien.dubosson@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(defconst systemd-packages
'(
flycheck
systemd
)
"The list of Lisp packages required by the systemd layer.")
(defun systemd/post-init-flycheck ()
(spacemacs/enable-flycheck 'systemd-mode))
(defun systemd/init-systemd ()
(use-package systemd
:init (setq systemd-use-company-p
(configuration-layer/package-used-p 'company))
:config (spacemacs/set-leader-keys-for-major-mode 'systemd-mode
"hd" 'systemd-doc-directives
"ho" 'systemd-doc-open)))
;;; packages.el ends here