mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-12-25 13:42:23 +00:00
Add lsp shit to emacs
This commit is contained in:
parent
5e91cb4d75
commit
88999b818b
1 changed files with 25 additions and 0 deletions
|
@ -471,6 +471,31 @@ because rainbows are fancy!
|
||||||
|
|
||||||
|
|
||||||
* Language support
|
* Language support
|
||||||
|
|
||||||
|
** LSP-mode
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
|
||||||
|
(use-package lsp-mode
|
||||||
|
:hook (;; replace XXX-mode with concrete major-mode(e. g. python-mode)
|
||||||
|
(rustic . lsp)
|
||||||
|
(lsp-mode . lsp-enable-which-key-integration))
|
||||||
|
:commands lsp)
|
||||||
|
|
||||||
|
(use-package company)
|
||||||
|
(use-package lsp-ui :commands lsp-ui-mode)
|
||||||
|
(use-package lsp-ivy :commands lsp-ivy-workspace-symbol)
|
||||||
|
(use-package lsp-treemacs :commands lsp-treemacs-errors-list)
|
||||||
|
(use-package dap-mode)
|
||||||
|
;; (use-package dap-LANGUAGE) to load the dap adapter for your language
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
** Rust
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package rustic)
|
||||||
|
#+end_src
|
||||||
|
|
||||||
** Lisp
|
** Lisp
|
||||||
|
|
||||||
*** parinfer
|
*** parinfer
|
||||||
|
|
Loading…
Reference in a new issue