22 lines
707 B
EmacsLisp
22 lines
707 B
EmacsLisp
;;; config.el --- Elixir Layer configuration File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2020 Sylvain Benner & Contributors
|
|
;;
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;;; License: GPLv3
|
|
|
|
;; Variables
|
|
|
|
(defvar elixir-backend nil
|
|
"The backend to use for IDE features.
|
|
Possible values are `alchemist' and `lsp'.
|
|
If `nil' then `alchemist' is the default backend unless `lsp' layer is used.")
|
|
|
|
(defvar elixir-ls-path "~/elixir-ls/release"
|
|
"The path to the folder that contains the elixir-ls release, start scripts (language_server.sh/language_server.bat).")
|
|
|
|
(spacemacs|define-jump-handlers elixir-mode)
|