From 25eda56e27c148b95242348bbdedc4e413c99aba Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Wed, 5 Dec 2018 20:35:50 -0800 Subject: [PATCH] Emacs configuration tip by BooAA --- Emacs.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/Emacs.md b/Emacs.md index 81bf3f7..338a8a8 100644 --- a/Emacs.md +++ b/Emacs.md @@ -16,7 +16,20 @@ https://melpa.org/#/ccls ### Configure -spacemacs: set `c-c++-backend` to `lsp-ccls` in the `+lang/c-c++` layer +#### spacemacs + +set `c-c++-backend` to `lsp-ccls` in the `+lang/c-c++` layer + +#### use-package + +```elisp +(use-package lsp-mode + :commands lsp + :config (require 'lsp-clients)) + +(use-package ccls :defer t) +(add-hook 'c++-mode-hook (lambda () (require 'ccls) (lsp))) +``` The only required configuration is `ccls-executable`. Others have good defaults. @@ -29,8 +42,6 @@ The only required configuration is `ccls-executable`. Others have good defaults. ;; ;; Log file ;; (setq ccls-extra-args '("--log-file=/tmp/cq.log")) -;; ;; Cache directory, both relative and absolute paths are supported -;; (setq ccls-initialization-options '(:cacheDirectory ".ccls-cache")) ``` A more flexible way is to leave `ccls-executable` unchanged (default: `ccls`) and create a shell wrapper named `ccls` that is in your `PATH`: