diff options
author | fpi | 2020-06-28 10:32:51 +0200 |
---|---|---|
committer | fpi | 2020-06-28 10:33:46 +0200 |
commit | 4cebcc5c2d79662608262f391b288f1a70678d3b (patch) | |
tree | 2448a87199f750eec4584f9267df2fdfd92f42b2 | |
parent | Create customization themes to change spacemacs themes (diff) |
Fix some use-package calls
-rw-r--r-- | emacs-init.org | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/emacs-init.org b/emacs-init.org index f74dd8b..a2ae1c0 100644 --- a/emacs-init.org +++ b/emacs-init.org @@ -2347,9 +2347,8 @@ after the theme changes. #+end_src ** Latex #+begin_src emacs-lisp -(use-package auctex - :no-require t - :straight t) +(use-package tex-site + :straight auctex) #+end_src =cdlatex= depends on =texmath.el=. The docstring of =cdlatex= says @@ -2382,8 +2381,8 @@ area. #+end_src *** Matlab #+begin_src emacs-lisp -(use-package matlab-mode - :straight t) +(use-package matlab + :straight matlab-mode) #+end_src ** Org mode Org is the mode you never need to leave, if you do not want to. My org |