fix(emacs): lsp

This commit is contained in:
lily 2024-07-28 20:20:19 -04:00
parent f66f159204
commit e7b83c5df8
Signed by: lily
GPG key ID: 601F3263FBCBC4B9
2 changed files with 4 additions and 1 deletions

View file

@ -95,7 +95,7 @@
;;ein ; tame Jupyter notebooks with emacs ;;ein ; tame Jupyter notebooks with emacs
(eval +overlay) ; run code, run (also, repls) (eval +overlay) ; run code, run (also, repls)
lookup ; navigate your code and its documentation lookup ; navigate your code and its documentation
;;lsp ; M-x vscode lsp ; M-x vscode
magit ; a git porcelain for Emacs magit ; a git porcelain for Emacs
;;make ; run make tasks from Emacs ;;make ; run make tasks from Emacs
;;pass ; password manager for nerds ;;pass ; password manager for nerds

View file

@ -53,6 +53,9 @@
(package! catppuccin-theme) (package! catppuccin-theme)
(package! org-view-mode) (package! org-view-mode)
(package! org-superstar) (package! org-superstar)
(package! lsp-ui)
(setq lsp-log-io t)
(add-hook 'org-mode-hook (add-hook 'org-mode-hook
(lambda () (lambda ()
(org-superstar-mode 1))) (org-superstar-mode 1)))