32da42863e
In Emacs 28+, `define-obsolete-variable-alias` requires the WHEN arg.
106 lines
3.5 KiB
EmacsLisp
106 lines
3.5 KiB
EmacsLisp
;;; config.el --- C/C++ Layer config File for Spacemacs
|
||
;;
|
||
;; Copyright (c) 2012-2021 Sylvain Benner & Contributors
|
||
;;
|
||
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
||
;; URL: https://github.com/syl20bnr/spacemacs
|
||
;;
|
||
;; This file is not part of GNU Emacs.
|
||
;;
|
||
;; 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/>.
|
||
|
||
|
||
;; variables
|
||
|
||
(spacemacs|define-jump-handlers c++-mode)
|
||
(spacemacs|define-jump-handlers c-mode)
|
||
|
||
(defvar c-c++-backend (when (configuration-layer/layer-used-p 'lsp) 'lsp-clangd)
|
||
"The backend to use for IDE features.
|
||
Possible values are `lsp-ccls', `lsp-clangd', `rtags' and `ycmd'.")
|
||
|
||
|
||
;; lsp
|
||
|
||
(defvar c-c++-lsp-enable-semantic-highlight nil
|
||
"If non-nil then enable semantic highlighting.
|
||
If `t' then regular semantic highlighting is enabled.
|
||
If `rainbow' then rainbow semantic highlighting is enabled.
|
||
Rainbow semantic highlighting gives a unique color to each identifier.")
|
||
|
||
(defvar c-c++-lsp-semantic-highlight-method 'font-lock
|
||
"Method used to highlight the text when semantic highlighting is enabled.
|
||
|
||
By default `font-lock' is used to highlight the text, set the variable to
|
||
`overlay' if you want to use overlays. Note that overlays can be slower.")
|
||
|
||
|
||
;; dap
|
||
|
||
(defvar c-c++-dap-adapters '(dap-cpptools)
|
||
"Debug adapters to use for IDE debug features.
|
||
|
||
By default only `dap-cpptools' is used.
|
||
|
||
Add `dap-cpptools' for the official Microsoft C/C++ Extension for VSCode.
|
||
Add `dap-lldb' for the official LLDB project adapter.
|
||
Add `dap-gdb-lldb' for the WebFreak Native Debug extension.")
|
||
|
||
|
||
;; rtags
|
||
|
||
(defvar c-c++-enable-rtags-completion t
|
||
"If `nil', RTags completion is disabled when the RTags backend is enabled.")
|
||
|
||
|
||
;; clang
|
||
|
||
(defvar c-c++-enable-clang-format-on-save nil
|
||
"If non-nil, automatically format code with ClangFormat on
|
||
save. Clang support has to be enabled for this to work.")
|
||
|
||
|
||
;; style
|
||
(define-obsolete-variable-alias 'c++-enable-organize-includes-on-save 'c-c++-enable-organize-includes-on-save nil)
|
||
(defvar c-c++-enable-organize-includes-on-save nil
|
||
"If non-nil then automatically organize the includes on save C++ buffer.")
|
||
|
||
(defvar c-c++-enable-auto-newline nil
|
||
"If non nil then enables the `Auto-newline' minor mode.")
|
||
|
||
(defvar c-c++-enable-google-style nil
|
||
"If non-nil `google-set-c-style' will be added as as
|
||
`c-mode-common-hook'.")
|
||
|
||
(defvar c-c++-enable-google-newline nil
|
||
"If non-nil `google-make-newline-indent' will be added as as
|
||
`c-mode-common-hook'.")
|
||
|
||
|
||
;; misc
|
||
|
||
(defvar c-c++-default-mode-for-headers (unless (functionp 'c-or-c++-mode) 'c-mode)
|
||
"Default mode to open header files. Can be `c-mode' or `c++-mode', or `c-or-c++-mode' for Emacs > 26+.")
|
||
|
||
(defvar c-c++-adopt-subprojects nil
|
||
"When non-nil, projectile will remember project root when visiting files in subprojects")
|
||
|
||
|
||
;; internal
|
||
|
||
(defconst c-c++-modes '(c-mode c++-mode)
|
||
"Primary major modes of the `c-c++' layer.")
|
||
|
||
(defconst c-c++-mode-hooks '(c-mode-hook c++-mode-hook)
|
||
"Primary hooks of the `c-c++' layer.")
|