efa7d4245f
The new elixir LSP server brings DAP support therefore we now also load DAP layer when the lsp backend has been activated in the elixir layer.
14 lines
414 B
EmacsLisp
14 lines
414 B
EmacsLisp
;;; layers.el --- Elixir Layer declarations File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2019 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
|
|
|
|
(when (and (boundp 'elixir-backend)
|
|
(eq elixir-backend 'lsp))
|
|
(configuration-layer/declare-layers '(lsp dap)))
|