spacemacs/layers/+lang/elixir/config.el
Maximilian Wolff 1660527cd7
[Elixir] Remove traces of flycheck-mix from docs and layer variables
flycheck-mix has been removed by the package author as being
obsolete with proper lsp and alchemist support. Therefore
the layer also has been cleared of it as it cannot longer
be found on Melpa.
2020-06-08 22:59:48 +02:00

23 lines
707 B
EmacsLisp

;;; config.el --- Elixir Layer configuration File for Spacemacs
;;
;; Copyright (c) 2012-2018 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)