17 lines
337 B
EmacsLisp
17 lines
337 B
EmacsLisp
|
;; This file contains configuration for languages
|
||
|
|
||
|
;; Markdown
|
||
|
(use-package markdown-mode)
|
||
|
|
||
|
(use-package flycheck)
|
||
|
|
||
|
;; eglot - Language Server Protocol ingegration
|
||
|
(use-package eglot)
|
||
|
|
||
|
;; Rust
|
||
|
(use-package rustic
|
||
|
:custom
|
||
|
(rustic-lsp-client 'eglot)) ; Make eglot the default LSP client
|
||
|
|
||
|
(add-hook 'prog-mode-hook 'electric-pair-mode)
|