summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2023-03-19 13:07:08 +0000
committerYann Herklotz <git@yannherklotz.com>2023-03-19 13:07:08 +0000
commitf47ef4c3d7b741ab346ac62f7e4d13f0cd9cffe6 (patch)
tree2df6022ceb1b896dca5eb2d894f53bf0fe688abc
parent27b538c521821823cfd8b2599bfc8ccb12379b75 (diff)
downloadymh-emacs-f47ef4c3d7b741ab346ac62f7e4d13f0cd9cffe6.tar.gz
ymh-emacs-f47ef4c3d7b741ab346ac62f7e4d13f0cd9cffe6.zip
Add Rust mode
-rw-r--r--init.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/init.el b/init.el
index 549838c..21a26f6 100644
--- a/init.el
+++ b/init.el
@@ -1049,7 +1049,6 @@ https://yannherklotz.com"))
(shell-command-to-string "agda-mode locate"))))
(use-package zig-mode
- :if (executable-find "zig")
:ensure t)
(use-package outline
@@ -1078,6 +1077,9 @@ https://yannherklotz.com"))
("C-<" . outline-promote)
("C->" . outline-demote)))
+(use-package rust-mode
+ :ensure t)
+
(setq gc-cons-threshold (* 1024 1024 10))
(setq custom-file (expand-file-name "custom.el" user-emacs-directory))