2018-11-19 21:07:53 +00:00
|
|
|
;;; packages.el --- Nim Layer packages File for Spacemacs
|
|
|
|
;;
|
2021-03-22 20:11:29 +00:00
|
|
|
;; Copyright (c) 2012-2021 Sylvain Benner & Contributors
|
2018-11-19 21:07:53 +00:00
|
|
|
;;
|
|
|
|
;; Author: Max Gonzih
|
|
|
|
;; 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/>.
|
|
|
|
|
2018-11-19 21:07:53 +00:00
|
|
|
|
2020-07-21 20:58:52 +00:00
|
|
|
(defconst nim-packages
|
|
|
|
'(
|
|
|
|
company
|
|
|
|
flycheck
|
|
|
|
flycheck-nim
|
|
|
|
nim-mode))
|
2015-07-24 11:16:06 +00:00
|
|
|
|
2015-10-11 03:19:23 +00:00
|
|
|
(defun nim/post-init-company ()
|
2020-07-21 20:58:52 +00:00
|
|
|
(spacemacs//nim-setup-company))
|
2015-10-11 03:19:23 +00:00
|
|
|
|
|
|
|
(defun nim/post-init-flycheck ()
|
2020-07-21 20:58:52 +00:00
|
|
|
(spacemacs/enable-flycheck 'nim-mode)
|
|
|
|
(spacemacs/enable-flycheck 'nimscript-mode))
|
2015-10-11 03:19:23 +00:00
|
|
|
|
|
|
|
(defun nim/init-flycheck-nim ()
|
|
|
|
(use-package flycheck-nim
|
2017-07-02 13:48:06 +00:00
|
|
|
:if (configuration-layer/package-used-p 'flycheck)))
|
2015-10-11 03:19:23 +00:00
|
|
|
|
2015-07-24 11:16:06 +00:00
|
|
|
(defun nim/init-nim-mode ()
|
|
|
|
(use-package nim-mode
|
2018-03-04 04:37:53 +00:00
|
|
|
:defer t
|
2020-07-21 20:58:52 +00:00
|
|
|
:init (add-hook 'nim-mode-hook #'spacemacs//nim-setup-backend)
|
2015-07-24 11:16:06 +00:00
|
|
|
:config
|
|
|
|
(progn
|
2020-07-21 20:58:52 +00:00
|
|
|
;; Set non lsp bindings
|
2021-03-18 04:40:26 +00:00
|
|
|
(when (eq nim-backend 'company-nim)
|
2020-07-21 20:58:52 +00:00
|
|
|
(spacemacs/declare-prefix-for-mode 'nim-mode "mg" "goto")
|
|
|
|
(spacemacs/declare-prefix-for-mode 'nim-mode "mh" "help")
|
|
|
|
(spacemacs/set-leader-keys-for-major-mode 'nim-mode
|
|
|
|
"hh" 'nimsuggest-show-doc))
|
2016-09-15 11:04:48 +00:00
|
|
|
|
2020-07-21 20:58:52 +00:00
|
|
|
;; Set general bindings
|
2019-02-04 15:16:07 +00:00
|
|
|
(spacemacs/declare-prefix-for-mode 'nim-mode "mc" "compile")
|
2015-11-18 00:38:05 +00:00
|
|
|
(spacemacs/set-leader-keys-for-major-mode 'nim-mode
|
2016-09-15 11:04:48 +00:00
|
|
|
"cr" 'spacemacs/nim-compile-run
|
2020-07-21 20:58:52 +00:00
|
|
|
"gb" 'pop-tag-mark))))
|