2017-08-28 17:49:09 +00:00
|
|
|
;;; packages.el --- Groovy Layer packages File for Spacemacs
|
|
|
|
;;
|
2021-03-22 20:11:29 +00:00
|
|
|
;; Copyright (c) 2012-2021 Sylvain Benner & Contributors
|
2017-08-28 17:49:09 +00:00
|
|
|
;;
|
|
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
|
|
;; 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/>.
|
|
|
|
|
2017-08-28 17:49:09 +00:00
|
|
|
|
2020-07-05 21:58:55 +00:00
|
|
|
(defconst groovy-packages
|
|
|
|
'(
|
|
|
|
company
|
|
|
|
groovy-imports
|
|
|
|
groovy-mode
|
|
|
|
org))
|
2017-08-28 17:49:09 +00:00
|
|
|
|
|
|
|
(defun groovy/post-init-company ()
|
2021-04-17 07:45:37 +00:00
|
|
|
(add-hook 'groovy-mode-local-vars-hook 'spacemacs//groovy-setup-company))
|
2020-07-05 21:58:55 +00:00
|
|
|
|
|
|
|
(defun groovy/post-init-flycheck ()
|
|
|
|
(spacemacs/enable-flycheck 'groovy-mode))
|
2017-08-28 17:49:09 +00:00
|
|
|
|
|
|
|
(defun groovy/init-groovy-imports ()
|
|
|
|
(use-package groovy-imports
|
2018-03-10 15:40:57 +00:00
|
|
|
:defer t
|
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
(add-hook 'groovy-mode-hook 'groovy-imports-scan-file)
|
|
|
|
(spacemacs/set-leader-keys-for-major-mode 'groovy-mode
|
|
|
|
"ri" 'groovy-imports-add-import-dwim))))
|
2017-08-28 17:49:09 +00:00
|
|
|
|
|
|
|
(defun groovy/init-groovy-mode ()
|
|
|
|
(use-package groovy-mode
|
2018-03-04 04:37:53 +00:00
|
|
|
:defer t
|
2021-04-17 07:45:37 +00:00
|
|
|
:hook (groovy-mode-local-vars . spacemacs//groovy-setup-backend)
|
2017-08-28 17:49:09 +00:00
|
|
|
:init
|
|
|
|
(progn
|
2020-07-11 23:42:44 +00:00
|
|
|
(setq lsp-groovy-server-file groovy-lsp-jar-path)
|
2017-08-28 17:49:09 +00:00
|
|
|
(spacemacs/declare-prefix-for-mode 'groovy-mode "ms" "REPL")
|
|
|
|
(spacemacs/set-leader-keys-for-major-mode 'groovy-mode
|
|
|
|
"'" 'run-groovy
|
|
|
|
"sB" 'spacemacs/groovy-load-file-switch
|
|
|
|
"sb" 'spacemacs/groovy-load-file
|
|
|
|
"sF" 'spacemacs/groovy-send-definition-switch
|
|
|
|
"sf" 'groovy-send-definition
|
|
|
|
"si" 'run-groovy
|
|
|
|
"sR" 'spacemacs/groovy-send-region-switch
|
2021-04-17 07:45:37 +00:00
|
|
|
"sr" 'groovy-send-region))))
|
2017-08-28 17:49:09 +00:00
|
|
|
|
|
|
|
(defun groovy/pre-init-org ()
|
|
|
|
(spacemacs|use-package-add-hook org
|
|
|
|
:post-config (add-to-list 'org-babel-load-languages '(groovy . t))))
|