0c774416d7
Before the ruby layer was only requiring standalone lsp layer, however with the latest changes dap support has been added therefore I have updated the layer file to require the full dap layer instead which in turn requires the lsp layer.
14 lines
416 B
EmacsLisp
14 lines
416 B
EmacsLisp
;;; layers.el --- Ruby 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 'ruby-backend)
|
|
(eq ruby-backend 'lsp))
|
|
(configuration-layer/declare-layer-dependencies '(dap)))
|