Skip to content

Instantly share code, notes, and snippets.

View wilhelmy's full-sized avatar

Moritz Wilhelmy wilhelmy

View GitHub Profile
@holgerschurig
holgerschurig / gist:3817f10540079792e8c225b8d26e59a5
Last active November 3, 2019 16:18
my lsp / clang configuration
;;; Package: lsp-mode - language server protocol
(use-package lsp-mode
:straight t
:diminish lsp-mode ;; I can see if it is active in the menu!
:commands (lsp lsp-deferred)
:hook ((c-mode . lsp-deferred)
(c++-mode . lsp-deferred))
:bind (:map lsp-mode-map
("C-c o" . lsp-describe-thing-at-point)