diff options
| author | fpi | 2021-02-23 10:08:58 +0100 | 
|---|---|---|
| committer | fpi | 2022-03-17 14:37:57 +0100 | 
| commit | ffc4549e70b4ad87de574f8cd411caf6d972d29d (patch) | |
| tree | d2817c77af899d73b91a1ce383ca6a7c624c079d | |
| parent | Set orb-template to auto-format notes from org-ref (diff) | |
Add lsp-mode (and other programming utilities)
| -rw-r--r-- | emacs-init.org | 15 | 
1 files changed, 15 insertions, 0 deletions
diff --git a/emacs-init.org b/emacs-init.org index 3deb808..aba9ad3 100644 --- a/emacs-init.org +++ b/emacs-init.org @@ -3171,6 +3171,21 @@ does not have it. So =auctex= has to deliver this dependency instead.            '("circuitikz" "\\begin{circuitikz}\nAUTOLABEL\n?\n\\end{circuitikz}" nil))))  #+end_src  ** Programming languages +*** Utilities +Various utilities which ease programming in some languages. +#+begin_src emacs-lisp +(use-package yasnippet +  :straight t) +(use-package yasnippet-snippets +  :straight t) +(use-package company +  :straight t) +#+end_src + +#+begin_src emacs-lisp +(use-package lsp-mode +  :straight t) +#+end_src  *** Emacs lisp  =Speed of thought= makes writing lisp so easy. No more snippets  needed.  | 
