Compare commits
3 commits
db164f0444
...
05ad81c631
Author | SHA1 | Date | |
---|---|---|---|
05ad81c631 | |||
c7945b9791 | |||
a327b831a9 |
2 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
;; set c style to linux and indention to 2
|
;; set c style to linux and indention to 2
|
||||||
(setq c-default-style "linux"
|
(setq c-default-style "linux"
|
||||||
c-basic-offset 2)
|
c-basic-offset 2)
|
||||||
|
|
||||||
|
(use-package lsp-mode
|
||||||
|
:ensure t
|
||||||
|
:hook
|
||||||
|
(c-mode . lsp-deferred))
|
||||||
|
|
|
@ -40,7 +40,9 @@
|
||||||
(add-hook 'prog-mode-hook #'flyspell-prog-mode)
|
(add-hook 'prog-mode-hook #'flyspell-prog-mode)
|
||||||
|
|
||||||
(use-package lsp-mode
|
(use-package lsp-mode
|
||||||
:ensure t)
|
:ensure t
|
||||||
|
:config
|
||||||
|
(setq lsp-completion-default-behaviour ':insert))
|
||||||
|
|
||||||
(use-package lsp-ui
|
(use-package lsp-ui
|
||||||
:ensure t
|
:ensure t
|
||||||
|
@ -48,7 +50,8 @@
|
||||||
("C-c i" . lsp-ui-doc-show)
|
("C-c i" . lsp-ui-doc-show)
|
||||||
:config
|
:config
|
||||||
(setq lsp-ui-doc-position 'at-point)
|
(setq lsp-ui-doc-position 'at-point)
|
||||||
(setq lsp-ui-doc-show-with-mouse nil))
|
(setq lsp-ui-doc-show-with-mouse nil)
|
||||||
|
(setq lsp-ui-sideline-show-diagnostics nil))
|
||||||
|
|
||||||
(use-package yasnippet
|
(use-package yasnippet
|
||||||
:ensure t)
|
:ensure t)
|
||||||
|
|
Loading…
Add table
Reference in a new issue