40c72dc437
- Moved backend determination to `config.el` - Replaced `pcase` form with only one-arm with `when` or `unless` form - Replaced `(when (not foo) bar)` with `(unless foo bar)` - Refactored function
117 lines
4 KiB
EmacsLisp
117 lines
4 KiB
EmacsLisp
;;; packages.el --- Julia layer packages file for Spacemacs.
|
|
;;
|
|
;; Copyright (c) 2012-2021 Sylvain Benner & Contributors
|
|
;;
|
|
;; Author: Adam Beckmeyer <adam_git@thebeckmeyers.xyz>
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;; 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/>.
|
|
|
|
|
|
(defconst julia-packages
|
|
'(
|
|
evil-surround
|
|
flycheck
|
|
julia-mode
|
|
julia-repl
|
|
lsp-julia))
|
|
|
|
(defun julia/init-julia-mode ()
|
|
(use-package julia-mode
|
|
:defer t
|
|
:init
|
|
(progn
|
|
(add-hook 'julia-mode-hook #'spacemacs//julia-setup-buffer)
|
|
(add-hook 'julia-mode-local-vars-hook #'spacemacs//julia-setup-backend)
|
|
(when julia-mode-enable-ess
|
|
(if (configuration-layer/layer-used-p 'ess)
|
|
(add-to-list 'auto-mode-alist
|
|
'("\\.jl\\'" . ess-julia-mode))
|
|
(message "`ess' layer is not installed. Please add `ess' layer to your dotfile."))))
|
|
:config
|
|
(progn
|
|
(spacemacs/declare-prefix-for-mode 'julia-mode "m=" "format")
|
|
(spacemacs/set-leader-keys-for-major-mode 'julia-mode
|
|
"l" 'julia-latexsub-or-indent
|
|
"==" 'julia-indent-line
|
|
"=d" 'julia-manual-deindent
|
|
"=q" 'prog-indent-sexp)
|
|
|
|
(when (configuration-layer/package-used-p 'helm)
|
|
(spacemacs/declare-prefix-for-mode 'julia-mode "mi" "insert")
|
|
(spacemacs/set-leader-keys-for-minor-mode 'julia-mode
|
|
"ii" 'spacemacs//julia-helm-math-insert)))))
|
|
|
|
(defun julia/init-julia-repl ()
|
|
(use-package julia-repl
|
|
:defer t
|
|
:init
|
|
(progn
|
|
(spacemacs/register-repl 'julia-repl 'julia-repl "julia-repl"))
|
|
:config
|
|
(progn
|
|
(spacemacs/declare-prefix-for-mode 'julia-mode "mh" "help")
|
|
(spacemacs/declare-prefix-for-mode 'julia-mode "me" "eval")
|
|
(spacemacs/declare-prefix-for-mode 'julia-mode "ms" "send")
|
|
(spacemacs/set-leader-keys-for-minor-mode 'julia-repl-mode
|
|
"'" 'julia-repl
|
|
"r" 'julia-repl
|
|
"hh" 'julia-repl-doc
|
|
|
|
"sa" 'julia-repl-activate-parent
|
|
"sd" 'julia-repl-cd
|
|
"si" 'julia-repl
|
|
"sb" 'julia-repl-send-buffer
|
|
"st" 'julia-repl-includet-buffer
|
|
"sl" 'julia-repl-send-line
|
|
"ss" 'julia-repl-send-line
|
|
"sr" 'julia-repl-send-region-or-line
|
|
"sm" 'julia-repl-macroexpand
|
|
"se" 'julia-repl-edit
|
|
"sv" 'julia-repl-prompt-set-inferior-buffer-name-suffix
|
|
|
|
"ea" 'julia-repl-activate-parent
|
|
"ed" 'julia-repl-cd
|
|
"eb" 'julia-repl-send-buffer
|
|
"et" 'julia-repl-includet-buffer
|
|
"el" 'julia-repl-send-line
|
|
"es" 'julia-repl-send-line
|
|
"er" 'julia-repl-send-region-or-line
|
|
"em" 'julia-repl-macroexpand
|
|
"ee" 'julia-repl-edit
|
|
"ev" 'julia-repl-prompt-set-inferior-buffer-name-suffix))))
|
|
|
|
|
|
(defun julia/post-init-evil-surround ()
|
|
(use-package evil-surround
|
|
:config
|
|
(progn
|
|
(add-hook
|
|
'julia-mode-hook
|
|
#'(lambda ()
|
|
(add-to-list 'evil-surround-pairs-alist '(?b . ("begin " . " end")))
|
|
(add-to-list 'evil-surround-pairs-alist '(?q . ("quote " . " end")))
|
|
(add-to-list 'evil-surround-pairs-alist '(?: . (":(" . ")")))
|
|
(add-to-list 'evil-surround-pairs-alist '(?l . ("let " . " end"))))))))
|
|
|
|
(defun julia/init-lsp-julia ()
|
|
(use-package lsp-julia
|
|
:config
|
|
(progn
|
|
(push 'xref-find-definitions spacemacs-jump-handlers-julia-mode))))
|
|
|
|
(defun julia/post-init-flycheck ()
|
|
(spacemacs/enable-flycheck 'julia-mode))
|