feat(gs/emacs): Configure for C++ development
Vendor the google-c-style module, and configure lsp-mode to run the clangd wrapper script for hacking on tvlnix Change-Id: I8d1ac2f30c9708501e0840ef3d53fe479bc39fa7 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1166 Tested-by: BuildkiteCI Reviewed-by: glittershark <grfn@gws.fyi>
This commit is contained in:
parent
d3ad338726
commit
8a7f0beb86
4 changed files with 185 additions and 0 deletions
26
users/glittershark/emacs.d/cpp.el
Normal file
26
users/glittershark/emacs.d/cpp.el
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
;;; ~/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++-clangd))
|
||||
|
||||
(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-hook 'c++-mode-hook #'+grfn/cpp-setup)
|
||||
|
||||
(comment
|
||||
(setq
|
||||
lsp-clients-clangd-executable
|
||||
"/home/grfn/code/depot/third_party/nix/clangd.sh"
|
||||
lsp-clients-clangd-args nil)
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue