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

64 lines
2 KiB
EmacsLisp
Raw Normal View History

2016-04-14 21:48:33 +00:00
;;; packages.el --- cfengine layer packages file for Spacemacs.
;;
2021-03-22 20:11:29 +00:00
;; Copyright (c) 2012-2021 Sylvain Benner & Contributors
2016-04-14 21:48:33 +00:00
;;
;; Author: Nick Anderson <nick@cmdln.org>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
2016-04-14 21:48:33 +00:00
(defconst cfengine-packages
'(
(cfengine3-mode :location built-in)
company
eldoc
flycheck
(ob-cfengine3 :requires org)
org
mustache-mode
))
2016-04-14 21:48:33 +00:00
(defun cfengine/init-cfengine3-mode ()
2016-04-14 21:48:33 +00:00
(use-package cfengine3-mode
:defer t
:mode ("\\.cf\\'" . cfengine3-mode)
:init (spacemacs/set-leader-keys-for-major-mode 'cfengine3-mode
"j" 'cfengine3-reformat-json-string)))
2016-04-14 21:48:33 +00:00
(defun cfengine/post-init-company ()
Refactor and simplify company backends declaration Enabling a company backend for a specific mode was a tedious tasks with code scattered at different locations, one for local variable definitions, one for company hook function definitions and another where the backends were pushed to the local variables (which was problematic, since we ended up pushing the same backends over and over again with `SPC f e R`, pushes have been replaced by add-to-list calls in the new macro). All these steps are now put together at one place with the new macro spacemacs|add-company-backends, check its docstring for more info on its arguments. This macro also allows to define arbitrary buffer local variables to tune company for specific modes (similar to layer variables via a keyword :variables) The code related to company backends management has been moved to the auto-completion layer in the funcs.el file. A nice side effect of this move is that it enforces correct encapsulation of company backends related code. We can now easily detect if there is some configuration leakage when the auto-completion layer is not used. But we loose macro expansion at file loading time (not sue it is a big concern though). The function spacemacs|enable-auto-complete was never used so it has been deleted which led to the deletion of the now empty file core-auto-completion.el. The example in LAYERS.org regarding auto-completion is now out of date and has been deleted. An example to setup auto-completion is provided in the README.org file of the auto-completion layer.
2017-01-02 05:39:04 +00:00
(spacemacs|add-company-backends :modes cfengine3-mode))
2016-04-14 21:48:33 +00:00
(defun cfengine/post-init-eldoc ()
(add-hook 'cfengine3-mode-hook 'eldoc-mode))
2016-04-14 21:48:33 +00:00
(defun cfengine/post-init-flycheck ()
(spacemacs/enable-flycheck 'cfengine3-mode))
(defun cfengine/init-ob-cfengine3 ()
(use-package ob-cfengine3
:defer t))
(defun cfengine/pre-init-org ()
(when (configuration-layer/layer-used-p 'org)
(spacemacs|use-package-add-hook org
:post-config (add-to-list 'org-babel-load-languages '(cfengine3 . t)))))
(defun cfengine/init-mustache-mode ()
(use-package mustache-mode
:init (add-to-list 'auto-mode-alist '("\\.mustache\\'" . mustache-mode))
:defer t))