diff options
author | fpi | 2021-02-23 10:09:19 +0100 |
---|---|---|
committer | fpi | 2022-03-17 14:37:57 +0100 |
commit | 43a1cdad4f6d1ea0bba53fe907d99fca165ffe1e (patch) | |
tree | ccc45bbcc40a7f51c9a0fe041ec5a68c1cc7d65d | |
parent | Add lsp-mode (and other programming utilities) (diff) |
Add support for rust development
Due to the support for org-babel, rustic-mode requires org and therefore
needs to be loaded after it. (As org needs to be initialized by the
use-package call to work properly with straight.el)
-rw-r--r-- | emacs-init.org | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs-init.org b/emacs-init.org index aba9ad3..372078b 100644 --- a/emacs-init.org +++ b/emacs-init.org @@ -3208,6 +3208,12 @@ area. :config (unbind-key "M-s" matlab-mode-map)) #+end_src +*** Rust +#+begin_src emacs-lisp +(use-package rustic + :straight t + :after org) +#+end_src ** Org mode Org is the mode you never need to leave, if you do not want to. My org TODO and clocking setup is largely inspired by [[http://doc.rix.si/cce/cce-org.html][Ryan Rix's]] and [[http://doc.norang.ca/org-mode.html][Bernt |