2015-06-09 03:26:56 +00:00
|
|
|
;;; packages.el --- Elixir Layer packages File for Spacemacs
|
2015-01-14 04:12:56 +00:00
|
|
|
;;
|
2017-01-06 03:51:13 +00:00
|
|
|
;; Copyright (c) 2012-2017 Sylvain Benner & Contributors
|
2015-01-14 04:12:56 +00:00
|
|
|
;;
|
|
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
;;
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
;;
|
|
|
|
;;; License: GPLv3
|
|
|
|
|
2015-06-09 03:26:56 +00:00
|
|
|
(setq elixir-packages
|
2014-11-29 04:59:23 +00:00
|
|
|
'(
|
2015-01-20 22:28:32 +00:00
|
|
|
alchemist
|
2015-06-09 03:28:27 +00:00
|
|
|
company
|
2014-11-29 04:59:23 +00:00
|
|
|
elixir-mode
|
2016-06-01 01:34:51 +00:00
|
|
|
flycheck
|
2016-06-07 07:42:35 +00:00
|
|
|
flycheck-mix
|
2016-12-24 21:58:47 +00:00
|
|
|
flycheck-credo
|
2016-04-05 04:08:34 +00:00
|
|
|
ggtags
|
|
|
|
helm-gtags
|
2016-10-11 23:00:36 +00:00
|
|
|
ob-elixir
|
2015-05-28 14:01:09 +00:00
|
|
|
popwin
|
2016-02-11 17:04:16 +00:00
|
|
|
smartparens
|
2015-04-19 03:40:24 +00:00
|
|
|
))
|
2016-05-27 04:22:47 +00:00
|
|
|
|
2016-06-01 01:34:51 +00:00
|
|
|
(defun elixir/post-init-company ()
|
2017-01-02 05:39:04 +00:00
|
|
|
(when (configuration-layer/package-usedp 'alchemist)
|
|
|
|
(spacemacs|add-company-backends
|
|
|
|
:backends alchemist-company
|
|
|
|
:modes elixir-mode alchemist-iex-mode)))
|
2016-06-01 01:34:51 +00:00
|
|
|
|
2016-05-27 04:22:47 +00:00
|
|
|
(defun elixir/init-alchemist ()
|
|
|
|
(use-package alchemist
|
|
|
|
:defer t
|
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
(spacemacs/register-repl 'alchemist 'alchemist-iex-run "alchemist")
|
|
|
|
(add-hook 'elixir-mode-hook 'alchemist-mode)
|
2016-06-01 00:04:48 +00:00
|
|
|
(setq alchemist-project-compile-when-needed t
|
|
|
|
alchemist-test-status-modeline nil)
|
2016-09-04 16:24:43 +00:00
|
|
|
(add-to-list 'spacemacs-jump-handlers-elixir-mode
|
2016-08-13 13:43:37 +00:00
|
|
|
'alchemist-goto-definition-at-point))
|
2016-05-27 04:22:47 +00:00
|
|
|
:config
|
|
|
|
(spacemacs/declare-prefix-for-mode 'elixir-mode "mc" "compile")
|
|
|
|
(spacemacs/declare-prefix-for-mode 'elixir-mode "me" "eval")
|
|
|
|
(spacemacs/declare-prefix-for-mode 'elixir-mode "mp" "project")
|
|
|
|
(spacemacs/declare-prefix-for-mode 'elixir-mode "mh" "help")
|
|
|
|
(spacemacs/declare-prefix-for-mode 'elixir-mode "mt" "test")
|
|
|
|
(spacemacs/declare-prefix-for-mode 'elixir-mode "ms" "iex")
|
|
|
|
(spacemacs/declare-prefix-for-mode 'elixir-mode "mm" "mix")
|
|
|
|
(spacemacs/declare-prefix-for-mode 'elixir-mode "mx" "execute")
|
|
|
|
(spacemacs/declare-prefix-for-mode 'elixir-mode "mg" "goto")
|
|
|
|
(spacemacs/set-leader-keys-for-major-mode 'elixir-mode
|
|
|
|
"el" 'alchemist-eval-current-line
|
|
|
|
"eL" 'alchemist-eval-print-current-line
|
|
|
|
"er" 'alchemist-eval-region
|
|
|
|
"eR" 'alchemist-eval-print-region
|
|
|
|
"eb" 'alchemist-eval-buffer
|
|
|
|
"eB" 'alchemist-eval-print-buffer
|
|
|
|
"ej" 'alchemist-eval-quoted-current-line
|
|
|
|
"eJ" 'alchemist-eval-print-quoted-current-line
|
|
|
|
"eu" 'alchemist-eval-quoted-region
|
|
|
|
"eU" 'alchemist-eval-print-quoted-region
|
|
|
|
"ev" 'alchemist-eval-quoted-buffer
|
|
|
|
"eV" 'alchemist-eval-print-quoted-buffer
|
|
|
|
|
|
|
|
"pt" 'alchemist-project-find-test
|
|
|
|
"gt" 'alchemist-project-toggle-file-and-tests
|
|
|
|
"gT" 'alchemist-project-toggle-file-and-tests-other-window
|
|
|
|
|
|
|
|
"h:" 'alchemist-help
|
|
|
|
"hH" 'alchemist-help-history
|
|
|
|
"hh" 'alchemist-help-search-at-point
|
2017-04-14 18:59:47 +00:00
|
|
|
"hr" 'alchemist-help--search-marked-region
|
2016-05-27 04:22:47 +00:00
|
|
|
|
|
|
|
"m:" 'alchemist-mix
|
|
|
|
"mc" 'alchemist-mix-compile
|
|
|
|
"mx" 'alchemist-mix-run
|
|
|
|
|
|
|
|
"'" 'alchemist-iex-run
|
|
|
|
"sc" 'alchemist-iex-compile-this-buffer
|
|
|
|
"si" 'alchemist-iex-run
|
|
|
|
"sI" 'alchemist-iex-project-run
|
|
|
|
"sl" 'alchemist-iex-send-current-line
|
|
|
|
"sL" 'alchemist-iex-send-current-line-and-go
|
|
|
|
"sm" 'alchemist-iex-reload-module
|
|
|
|
"sr" 'alchemist-iex-send-region
|
|
|
|
"sR" 'alchemist-iex-send-region-and-go
|
|
|
|
|
|
|
|
"ta" 'alchemist-mix-test
|
|
|
|
"tb" 'alchemist-mix-test-this-buffer
|
|
|
|
"tt" 'alchemist-mix-test-at-point
|
2017-04-14 18:59:47 +00:00
|
|
|
"tf" 'alchemist-mix-test-file
|
|
|
|
"tn" 'alchemist-test-mode-jump-to-next-test
|
|
|
|
"tp" 'alchemist-test-mode-jump-to-previous-test
|
2016-05-27 04:22:47 +00:00
|
|
|
"tr" 'alchemist-mix-rerun-last-test
|
|
|
|
|
|
|
|
"xb" 'alchemist-execute-this-buffer
|
|
|
|
"xf" 'alchemist-execute-file
|
|
|
|
"x:" 'alchemist-execute
|
|
|
|
|
|
|
|
"cb" 'alchemist-compile-this-buffer
|
|
|
|
"cf" 'alchemist-compile-file
|
|
|
|
"c:" 'alchemist-compile
|
|
|
|
|
|
|
|
"," 'alchemist-goto-jump-back)
|
|
|
|
|
|
|
|
(dolist (mode (list alchemist-compile-mode-map
|
|
|
|
alchemist-eval-mode-map
|
|
|
|
alchemist-execute-mode-map
|
|
|
|
alchemist-message-mode-map
|
|
|
|
alchemist-help-minor-mode-map
|
|
|
|
alchemist-mix-mode-map
|
|
|
|
alchemist-macroexpand-mode-map
|
|
|
|
alchemist-refcard-mode-map
|
|
|
|
alchemist-test-report-mode-map))
|
|
|
|
(evil-define-key 'normal mode
|
|
|
|
(kbd "q") 'quit-window))))
|
|
|
|
|
2016-06-07 07:42:35 +00:00
|
|
|
(defun elixir/init-flycheck-mix ()
|
|
|
|
(use-package flycheck-mix
|
|
|
|
:commands (flycheck-mix-setup)
|
2016-06-01 01:34:51 +00:00
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
(add-to-list 'safe-local-variable-values
|
|
|
|
(cons 'elixir-enable-compilation-checking nil))
|
|
|
|
(add-to-list 'safe-local-variable-values
|
|
|
|
(cons 'elixir-enable-compilation-checking t))
|
2016-06-26 18:04:13 +00:00
|
|
|
(add-hook 'elixir-mode-local-vars-hook
|
|
|
|
'spacemacs//elixir-enable-compilation-checking))))
|
2016-06-01 01:34:51 +00:00
|
|
|
|
2016-12-24 21:58:47 +00:00
|
|
|
(defun elixir/init-flycheck-credo ()
|
|
|
|
(use-package flycheck-credo
|
|
|
|
:defer t
|
|
|
|
:init (add-hook 'flycheck-mode-hook #'flycheck-credo-setup)))
|
|
|
|
|
2016-06-01 01:34:51 +00:00
|
|
|
(defun elixir/init-elixir-mode ()
|
|
|
|
(use-package elixir-mode
|
2016-09-05 02:29:41 +00:00
|
|
|
:defer t))
|
2016-06-01 01:34:51 +00:00
|
|
|
|
|
|
|
(defun elixir/post-init-flycheck ()
|
2017-02-14 03:27:29 +00:00
|
|
|
(spacemacs/enable-flycheck 'elixir-mode))
|
2016-06-01 01:34:51 +00:00
|
|
|
|
2016-10-11 23:00:36 +00:00
|
|
|
(defun elixir/pre-init-org ()
|
|
|
|
(spacemacs|use-package-add-hook org
|
2016-10-17 03:54:15 +00:00
|
|
|
:post-config (add-to-list 'org-babel-load-languages '(elixir . t))))
|
2016-10-11 23:00:36 +00:00
|
|
|
|
|
|
|
(defun elixir/init-ob-elixir ()
|
|
|
|
(spacemacs|use-package-add-hook org
|
|
|
|
:post-config
|
|
|
|
(use-package ob-elixir
|
|
|
|
:init (add-to-list 'org-babel-load-languages '(elixir . t)))))
|
|
|
|
|
|
|
|
|
2016-06-01 01:34:51 +00:00
|
|
|
(defun elixir/pre-init-popwin ()
|
|
|
|
(spacemacs|use-package-add-hook popwin
|
|
|
|
:post-config
|
|
|
|
(push '("*mix*" :tail t :noselect t) popwin:special-display-config)))
|
2016-05-27 04:22:47 +00:00
|
|
|
|
2016-07-25 05:36:36 +00:00
|
|
|
(defun elixir/pre-init-smartparens ()
|
2016-05-31 17:49:09 +00:00
|
|
|
(spacemacs|use-package-add-hook smartparens
|
|
|
|
:post-config
|
|
|
|
(progn
|
|
|
|
(sp-with-modes '(elixir-mode)
|
|
|
|
(sp-local-pair
|
2016-12-22 08:31:05 +00:00
|
|
|
"(" ")"
|
|
|
|
:unless '(:add spacemacs//elixir-point-after-fn-p))
|
|
|
|
(sp-local-pair
|
|
|
|
"fn" "end"
|
|
|
|
:when '(("SPC" "RET" "-" "("))
|
2016-05-31 17:49:09 +00:00
|
|
|
:post-handlers '(:add spacemacs//elixir-do-end-close-action)
|
|
|
|
:actions '(insert)))
|
|
|
|
(sp-with-modes '(elixir-mode)
|
|
|
|
(sp-local-pair
|
|
|
|
"do" "end"
|
|
|
|
:when '(("SPC" "RET"))
|
|
|
|
:post-handlers '(:add spacemacs//elixir-do-end-close-action)
|
|
|
|
:actions '(insert))))))
|
2016-04-05 04:08:34 +00:00
|
|
|
|
|
|
|
(defun elixir/post-init-ggtags ()
|
2016-08-15 19:24:44 +00:00
|
|
|
(add-hook 'elixir-mode-local-vars-hook #'spacemacs/ggtags-mode-enable))
|
2016-04-05 04:08:34 +00:00
|
|
|
|
|
|
|
(defun elixir/post-init-helm-gtags ()
|
|
|
|
(spacemacs/helm-gtags-define-keys-for-mode 'elixir-mode))
|