spacemacs/layers/+lang/kotlin/packages.el

49 lines
1.3 KiB
EmacsLisp
Raw Normal View History

2017-08-13 12:19:51 +00:00
;;; packages.el --- kotlin layer packages file for Spacemacs.
;;
2020-07-11 23:04:02 +00:00
;; Copyright (c) 2012-2020 Sylvain Benner & Contributors
2017-08-13 12:19:51 +00:00
;;
;; Author: Shanavas M <shanavas@disroot.org>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(defconst kotlin-packages
'(
2020-07-11 23:04:02 +00:00
company
2017-08-13 12:19:51 +00:00
flycheck
(flycheck-kotlin :requires flycheck)
ggtags
2020-07-11 23:04:02 +00:00
counsel-gtags
2017-08-13 12:19:51 +00:00
helm-gtags
2020-07-11 23:04:02 +00:00
kotlin-mode))
(defun kotlin/post-init-company ()
(spacemacs//kotlin-setup-company))
2017-08-13 12:19:51 +00:00
(defun kotlin/post-init-flycheck ()
(spacemacs/enable-flycheck 'kotlin-mode))
(defun kotlin/init-flycheck-kotlin ()
(use-package flycheck-kotlin
:defer t
2017-08-13 12:19:51 +00:00
:init (add-hook 'flycheck-mode-hook #'flycheck-kotlin-setup)))
2020-07-11 23:04:02 +00:00
(defun kotlin/init-kotlin-mode ()
(use-package kotlin-mode
:defer t
:init
(progn
(setq lsp-clients-kotlin-server-executable kotlin-lsp-jar-path)
(add-hook 'kotlin-mode-hook #'spacemacs//kotlin-setup-backend))))
2017-08-13 12:19:51 +00:00
(defun kotlin/post-init-ggtags ()
(add-hook 'kotlin-mode-local-vars-hook #'spacemacs/ggtags-mode-enable))
(defun kotlin/post-init-helm-gtags ()
(spacemacs/helm-gtags-define-keys-for-mode 'kotlin-mode))
2020-07-11 23:04:02 +00:00
(defun kotlin/post-init-counsel-gtags ()
(spacemacs/counsel-gtags-define-keys-for-mode 'kotlin-mode))