You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
380 B
EmacsLisp

;;; lsp.el --- LSP and autocomplete
;;; Commentary:
;;; LSP and autocomplete configurations
;;; Code:
(use-package eglot)
(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