Start adding lsp integration to emacs.

This commit is contained in:
jgrogan 2024-06-07 10:38:09 +01:00
parent fa30149008
commit 3a32b78c29
3 changed files with 69 additions and 1 deletions

View file

@ -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)
)