summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrégoire Duchêne <gduchene@awhk.org>2024-03-02 10:31:56 +0000
committerGrégoire Duchêne <gduchene@awhk.org>2024-03-02 10:31:56 +0000
commitbfb7c8c981daa13286c9f3d36cddce768fce6c5b (patch)
tree994aa229ebec0b3c9c8a04c4ec5c4caf599456e3
parent313847f97e171acd2a80327488ea48b76e7a49da (diff)
emacs: Add Rust configuration
-rw-r--r--emacs/init.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el
index bc42b36..86b1aae 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -198,6 +198,13 @@
(use-package org :custom (org-startup-folded 'showall) :defer t)
+;; Rust
+
+(use-package rust-mode
+ :hook (rust-mode . eglot-ensure)
+ :ensure t)
+
+
;; Shell Scripts
(use-package sh-script