Move what you can to LSP

This commit is contained in:
Maciej 2020-07-21 20:13:38 +03:00
parent 55b75ab70c
commit 55735b37c5
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
11 changed files with 44 additions and 138 deletions

View file

@ -1,7 +1,7 @@
(defun activate-clang-mode ()
"Goodies for editing c files"
(set-indent 4)
(column-enforce-n 80)
(set-indent 8)
(column-enforce-n 100)
(add-to-list (make-local-variable 'company-backends)
'(company-etags company-yasnippet))
@ -13,4 +13,4 @@
(projectile-project-root) (projectile-project-root)
)))
(add-hook 'c-mode-hook 'activate-clang-mode)
(add-hook 'c-mode 'activate-clang-mode)