repo.or.cz
/
Emacs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
improve erc-sasl
[Emacs.git]
/
lisp
/
init-eglot.el
blob
9cf28b84f0b8fde0e89eb7aa20cd546fd7e1e074
1
;;; init-eglot.el --- LSP support via eglot -*- lexical-binding: t; -*-
2
3
;;; Commentary:
4
5
;;; Code:
6
7
;; For Emacs >= 27
8
(
setq
read-process-output-max
(*
1024 1024
))
9
10
11
(
when
(
maybe-require-package
'
eglot
)
12
(
maybe-require-package
'
consult-eglot
))
13
14
15
16
17
(
provide
'
init-eglot
)
18
;;; init-eglot.el ends here