blob: 0fe2d1726c5fe25748bdb84aaaf050a8ba2ded30 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
;;; ~/code/depot/users/glittershark/emacs.d/cpp.el -*- lexical-binding: t; -*-
(load! "google-c-style")
(after! flycheck
(add-to-list 'flycheck-disabled-checkers 'c/c++-gcc)
(add-to-list 'flycheck-disabled-checkers 'c/c++-clang))
(defun +grfn/cpp-setup ()
(when (s-starts-with?
"/home/grfn/code/depot/third_party/nix"
(buffer-file-name))
(setq lsp-clients-clangd-executable "/home/grfn/code/depot/users/glittershark/emacs.d/nix-clangd.sh"
lsp-clients-clangd-args nil)
(google-set-c-style)
(lsp)
(add-to-list 'flycheck-disabled-checkers 'c/c++-gcc)
(add-to-list 'flycheck-disabled-checkers 'c/c++-clang)))
(add-hook 'c++-mode-hook #'+grfn/cpp-setup)
(use-package! protobuf-mode)
(use-package! clang-format+
:config
(add-hook 'c-mode-common-hook #'clang-format+-mode))
(comment
(setq
lsp-clients-clangd-executable
"/home/grfn/code/depot/third_party/nix/clangd.sh"
lsp-clients-clangd-args nil)
)
|