2015-03-26 17:37:55 +00:00
|
|
|
;;; packages.el --- Purescript Layer packages File for Spacemacs
|
|
|
|
;;
|
2021-03-22 20:11:29 +00:00
|
|
|
;; Copyright (c) 2012-2021 Sylvain Benner & Contributors
|
2015-03-26 17:37:55 +00:00
|
|
|
;;
|
|
|
|
;; Author: Ryan L. Bell
|
|
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
;;
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
;;
|
2021-03-24 03:31:44 +00:00
|
|
|
;; 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/>.
|
|
|
|
|
2015-03-26 17:37:55 +00:00
|
|
|
|
2015-04-19 03:40:24 +00:00
|
|
|
(setq purescript-packages
|
2018-11-20 19:55:37 +00:00
|
|
|
'(
|
2019-01-19 14:20:59 +00:00
|
|
|
add-node-modules-path
|
2018-11-20 19:55:37 +00:00
|
|
|
company
|
|
|
|
flycheck
|
|
|
|
purescript-mode
|
|
|
|
psci
|
|
|
|
psc-ide
|
|
|
|
popwin
|
|
|
|
))
|
2015-03-26 17:37:55 +00:00
|
|
|
|
2019-01-19 14:20:59 +00:00
|
|
|
(defun purescript/post-init-add-node-modules-path ()
|
|
|
|
(add-hook 'purescript-mode-hook 'add-node-modules-path))
|
|
|
|
|
2015-12-08 22:50:15 +00:00
|
|
|
(defun purescript/post-init-company ()
|
2020-10-23 16:57:47 +00:00
|
|
|
(spacemacs//purescript-setup-company))
|
2015-12-08 22:50:15 +00:00
|
|
|
|
2016-03-26 22:21:20 +00:00
|
|
|
(defun purescript/post-init-flycheck ()
|
2017-02-14 03:27:29 +00:00
|
|
|
(spacemacs/enable-flycheck 'purescript-mode))
|
2016-03-26 22:21:20 +00:00
|
|
|
|
2015-03-26 17:37:55 +00:00
|
|
|
(defun purescript/init-purescript-mode ()
|
|
|
|
(use-package purescript-mode
|
2018-03-04 04:37:53 +00:00
|
|
|
:defer t
|
2015-04-14 02:57:47 +00:00
|
|
|
:init
|
|
|
|
(progn
|
2020-01-25 04:58:43 +00:00
|
|
|
(add-to-list 'spacemacs-indent-sensitive-modes 'purescript-mode)
|
2015-04-14 02:57:47 +00:00
|
|
|
(add-hook 'purescript-mode-hook 'turn-on-purescript-indentation)
|
2017-09-25 20:35:44 +00:00
|
|
|
(add-hook 'purescript-mode-hook 'purescript-decl-scan-mode)
|
2020-10-23 16:57:47 +00:00
|
|
|
(add-hook 'purescript-mode-hook #'spacemacs//purescript-setup-backend)
|
2021-08-20 03:48:29 +00:00
|
|
|
(when purescript-fmt-on-save
|
|
|
|
(add-hook 'purescript-mode-hook 'spacemacs/purescript-fmt-before-save-hook))
|
2019-04-07 15:14:49 +00:00
|
|
|
(spacemacs/declare-prefix-for-mode 'purescript-mode "mg" "goto")
|
|
|
|
(spacemacs/declare-prefix-for-mode 'purescript-mode "mi" "imports")
|
2015-11-18 00:38:05 +00:00
|
|
|
(spacemacs/set-leader-keys-for-major-mode 'purescript-mode
|
|
|
|
"i=" 'purescript-mode-format-imports
|
|
|
|
"i`" 'purescript-navigate-imports-return
|
|
|
|
"ia" 'purescript-align-imports
|
2021-08-20 03:48:29 +00:00
|
|
|
"in" 'purescript-navigate-imports
|
|
|
|
"=" 'spacemacs/purescript-format))))
|
2020-10-23 16:57:47 +00:00
|
|
|
|
2015-03-26 17:37:55 +00:00
|
|
|
(defun purescript/init-psci ()
|
|
|
|
(use-package psci
|
2018-03-04 04:37:53 +00:00
|
|
|
:defer t
|
2015-03-26 17:37:55 +00:00
|
|
|
:init
|
2015-04-14 02:57:47 +00:00
|
|
|
(progn
|
2016-01-26 16:31:15 +00:00
|
|
|
(spacemacs/register-repl 'psci 'psci "purescript")
|
2015-04-14 02:57:47 +00:00
|
|
|
(add-hook 'purescript-mode-hook 'inferior-psci-mode)
|
2019-04-07 15:14:49 +00:00
|
|
|
(spacemacs/declare-prefix-for-mode 'purescript-mode "ms" "repl")
|
2015-11-18 00:38:05 +00:00
|
|
|
(spacemacs/set-leader-keys-for-major-mode 'purescript-mode
|
2016-01-26 16:31:15 +00:00
|
|
|
"'" 'psci
|
2015-11-18 00:38:05 +00:00
|
|
|
"sb" 'psci/load-current-file!
|
|
|
|
"si" 'psci
|
|
|
|
"sm" 'psci/load-module!
|
|
|
|
"sp" 'psci/load-project-modules!))))
|
2015-12-08 22:50:15 +00:00
|
|
|
|
|
|
|
(defun purescript/init-psc-ide ()
|
|
|
|
(use-package psc-ide
|
2018-03-04 04:37:53 +00:00
|
|
|
:defer t
|
2015-12-08 22:50:15 +00:00
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
(add-hook 'purescript-mode-hook 'psc-ide-mode)
|
2016-06-22 11:56:44 +00:00
|
|
|
|
|
|
|
(customize-set-variable 'psc-ide-add-import-on-completion purescript-add-import-on-completion)
|
|
|
|
(customize-set-variable 'psc-ide-rebuild-on-save purescript-enable-rebuild-on-save)
|
|
|
|
|
2016-09-04 16:24:43 +00:00
|
|
|
(add-to-list 'spacemacs-jump-handlers-purescript-mode 'psc-ide-goto-definition)
|
2019-04-07 15:14:49 +00:00
|
|
|
|
|
|
|
(spacemacs/declare-prefix-for-mode 'purescript-mode "mm" "psc-ide")
|
|
|
|
(spacemacs/declare-prefix-for-mode 'purescript-mode "mmi" "insert/import")
|
|
|
|
(spacemacs/declare-prefix-for-mode 'purescript-mode "mh" "help")
|
2015-12-08 22:50:15 +00:00
|
|
|
(spacemacs/set-leader-keys-for-major-mode 'purescript-mode
|
2016-06-22 11:56:44 +00:00
|
|
|
"mt" 'psc-ide-add-clause
|
2019-03-22 20:59:03 +00:00
|
|
|
"mc" 'psc-ide-case-split
|
2016-06-22 11:56:44 +00:00
|
|
|
"ms" 'psc-ide-server-start
|
|
|
|
"mb" 'psc-ide-rebuild
|
|
|
|
"mq" 'psc-ide-server-quit
|
|
|
|
"ml" 'psc-ide-load-all
|
|
|
|
"mL" 'psc-ide-load-module
|
|
|
|
"mia" 'psc-ide-add-import
|
|
|
|
"mis" 'psc-ide-flycheck-insert-suggestion
|
2016-08-13 13:43:37 +00:00
|
|
|
"ht" 'psc-ide-show-type))))
|
2016-06-22 11:56:44 +00:00
|
|
|
|
|
|
|
(defun purescript/pre-init-popwin ()
|
|
|
|
(spacemacs|use-package-add-hook popwin
|
|
|
|
:post-config
|
|
|
|
(push '("*psc-ide-rebuild*" :tail t :noselect t) popwin:special-display-config)))
|