64b607ce14
Adjust the documentation to be more clear how to activate the new lsp feature. Simplify layer setup code. Provide missing company-lsp integration in feature list. Remove obsolete tests for a loaded lsp layer as the docker layer loads it itself already.
15 lines
425 B
EmacsLisp
15 lines
425 B
EmacsLisp
;;; funcs.el --- docker Layer functions File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2019 Sylvain Benner & Contributors
|
|
;;
|
|
;; Author: Seong Yong-ju <sei40kr@gmail.com>
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;;; License: GPLv3
|
|
|
|
(defun spacemacs//docker-dockerfile-setup-backend ()
|
|
"Conditionally setup docker backend."
|
|
(pcase docker-dockerfile-backend
|
|
(`lsp (lsp))))
|