2015-01-28 15:24:24 +00:00
|
|
|
;;; config.el --- Clojure Layer configuration File for Spacemacs
|
|
|
|
;;
|
2021-03-22 20:11:29 +00:00
|
|
|
;; Copyright (c) 2012-2021 Sylvain Benner & Contributors
|
2015-01-28 15:24:24 +00:00
|
|
|
;;
|
|
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
;;
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
;;
|
2021-03-24 03:31:44 +00:00
|
|
|
;; This program is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
;;
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
;;
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2015-01-28 15:24:24 +00:00
|
|
|
|
|
|
|
;; Variables
|
|
|
|
|
2016-09-05 02:29:41 +00:00
|
|
|
(spacemacs|define-jump-handlers clojure-mode)
|
|
|
|
(spacemacs|define-jump-handlers clojurec-mode)
|
|
|
|
(spacemacs|define-jump-handlers clojurescript-mode)
|
|
|
|
(spacemacs|define-jump-handlers clojurex-mode)
|
|
|
|
(spacemacs|define-jump-handlers cider-repl-mode)
|
|
|
|
|
2015-01-28 15:24:24 +00:00
|
|
|
(defvar clojure-enable-fancify-symbols nil
|
2018-08-21 08:19:36 +00:00
|
|
|
"If non-nil, the `fancify-symbols' function is enabled.")
|
|
|
|
|
|
|
|
(defvar clojure-enable-sayid nil
|
|
|
|
"If non-nil, the Sayid Clojure debugger is enabled.")
|
2018-10-04 08:58:13 +00:00
|
|
|
|
|
|
|
(defvar clojure-enable-clj-refactor nil
|
|
|
|
"If non-nil, the clj-refactor is enabled.")
|
2019-01-14 08:19:14 +00:00
|
|
|
|
|
|
|
(defvar clojure-enable-linters nil
|
|
|
|
"If non-nil, enable clojure linters.")
|
2020-11-24 20:35:31 +00:00
|
|
|
|
2021-03-18 03:51:24 +00:00
|
|
|
(defvar clojure-backend (if (configuration-layer/layer-used-p 'lsp) 'lsp 'cider)
|
2020-11-24 20:35:31 +00:00
|
|
|
"The backend to use for IDE features.
|
|
|
|
Possible values are `lsp' and `cider'.
|
|
|
|
If `nil' then 'cider` is the default backend unless `lsp' layer is used")
|