spacemacs/layers/+lang/nim/packages.el
syl20bnr f45ce1a88e syntax-checking: rename function add-flycheck-hook to enable-flycheck
spacemacs/add-flycheck-hook was not really hooking anything, change the name
to better reflect what it does.
Also changed the push for a add-to-list to avoid duplicates.
2017-03-19 12:40:36 -04:00

35 lines
897 B
EmacsLisp

(setq nim-packages
'(company
flycheck
flycheck-nim
nim-mode))
(defun nim/post-init-company ()
(spacemacs|add-company-backends
:backends company-capf
:modes nim-mode nimscript-mode))
(defun nim/post-init-flycheck ()
(spacemacs/enable-flycheck 'nim-mode))
(defun nim/init-flycheck-nim ()
(use-package flycheck-nim
:if (configuration-layer/package-usedp 'flycheck)))
(defun nim/init-nim-mode ()
(use-package nim-mode
:defer t
:init
(progn
(add-hook 'nim-mode-hook 'nimsuggest-mode)
(push 'nimsuggest-find-definition spacemacs-jump-handlers-nim-mode))
:config
(progn
(defun spacemacs/nim-compile-run ()
(interactive)
(shell-command "nim compile --run main.nim"))
(spacemacs/set-leader-keys-for-major-mode 'nim-mode
"cr" 'spacemacs/nim-compile-run
"gb" 'pop-tag-mark))))