Start adding lsp integration to emacs.
This commit is contained in:
parent
fa30149008
commit
3a32b78c29
3 changed files with 69 additions and 1 deletions
|
@ -27,7 +27,9 @@
|
|||
(use-package markdown-mode
|
||||
:ensure t
|
||||
:mode ("README\\.md\\'" . gfm-mode)
|
||||
:init (setq markdown-command "pandoc"))
|
||||
:init
|
||||
(setq markdown-command "pandoc")
|
||||
(setq markdown-max-image-size '(500 . 300)))
|
||||
|
||||
(use-package projectile
|
||||
:diminish projectile-modex
|
||||
|
@ -44,3 +46,8 @@
|
|||
|
||||
(setq vc-follow-symlinks t)
|
||||
|
||||
(use-package auctex
|
||||
:config
|
||||
(setq TeX-auto-save t)
|
||||
(setq TeX-parse-self t)
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue