spacemacs/layers/+tools/systemd/packages.el

32 lines
847 B
EmacsLisp
Raw Normal View History

2016-01-24 19:31:22 +00:00
;;; packages.el --- systemd layer packages file for Spacemacs.
;;
2018-01-04 07:00:25 +00:00
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
2016-01-24 19:31:22 +00:00
;;
;; 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
2016-10-23 19:52:18 +00:00
'(
flycheck
systemd
)
2016-01-24 19:31:22 +00:00
"The list of Lisp packages required by the systemd layer.")
2016-10-23 19:52:18 +00:00
(defun systemd/post-init-flycheck ()
(spacemacs/enable-flycheck 'systemd-mode))
2016-01-24 19:31:22 +00:00
(defun systemd/init-systemd ()
(use-package systemd
:defer t
: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)))
2016-01-24 19:31:22 +00:00
;;; packages.el ends here