2022-06-05 21:41:46 -06:00
|
|
|
;;; lsp.el --- LSP and autocomplete
|
|
|
|
;;; Commentary:
|
|
|
|
;;; LSP and autocomplete configurations
|
|
|
|
;;; Code:
|
2022-06-08 08:11:05 -06:00
|
|
|
(use-package eglot)
|
2022-06-05 21:41:46 -06:00
|
|
|
|
|
|
|
(use-package yasnippet
|
|
|
|
:config
|
|
|
|
(yas-global-mode))
|
|
|
|
(use-package yasnippet-snippets)
|
|
|
|
|
|
|
|
(use-package flycheck
|
|
|
|
:ensure t
|
|
|
|
:init
|
|
|
|
(global-flycheck-mode))
|
|
|
|
|
|
|
|
(use-package company
|
|
|
|
:hook
|
|
|
|
(global-company-mode))
|
|
|
|
|
|
|
|
(use-package helm-lsp)
|
|
|
|
|
|
|
|
;;; lsp.el ends here
|