spacemacs/layers/+lang/mercury/packages.el
Maximilian Wolff 6018580958 Make layers activate/deactivate the right version of smartparens
Before layers were sometimes only activating the non strict
version of smartparens. Also some were only disabling
the non-strict version leaving some of the smartparens
advices intact.

With this PR, all layers set the right version of smartparens.
Also if the layer is trying to disable it a standard function
will now take care to disable all versions of smartparens.
2021-03-16 17:47:15 +00:00

50 lines
1.5 KiB
EmacsLisp

;;; packages.el --- mercury layer packages file for Spacemacs.
;;
;; Copyright (c) 2012-2020 Sylvain Benner & Contributors
;;
;; Author: Ludvig Böklin <ludvig.boklin@protonmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(defconst mercury-packages
'((metal-mercury-mode :location (recipe
:fetcher github
:repo "ahungry/metal-mercury-mode"
:commit "99e2d8fb7177cae3bfa2dec2910fc28216d5f5a8"))
flycheck
(flycheck-mercury :requires flycheck)
smartparens))
(defun mercury/post-init-flycheck ()
(add-hook 'metal-mercury-mode-hook 'flycheck-mode))
(defun mercury/init-flycheck-mercury ()
"Initialize flycheck-mercury"
(use-package flycheck-mercury))
(defun mercury/init-metal-mercury-mode ()
"Initialize metal-mercury-mode"
(use-package metal-mercury-mode
:defer t
:init
:mode ("\\.m\\'" . metal-mercury-mode)
:config
(progn
(dolist (x '(
;; ("m=" . "format")
("mc" . "mercury/compile")
;; ("mh" . "help")
))
(spacemacs/declare-prefix-for-mode 'metal-mercury-mode (car x) (cdr x)))
(spacemacs/set-leader-keys-for-major-mode 'metal-mercury-mode
;; make
"cb" 'metal-mercury-mode-compile
"cr" 'metal-mercury-mode-runner))))
(defun mercury/post-init-smartparens ()
(add-hook 'metal-mercury-mode-hook #'spacemacs//activate-smartparens))