summary refs log tree commit diff
path: root/config/init-rust.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-05-26 14:00:34 -0700
committerFranck Cuny <franck@fcuny.net>2024-05-26 14:00:34 -0700
commit38593df6bb457fc3940fcef1d93976cd56b0a2d0 (patch)
tree58fbc11815b2fe7619d1234388877ebc0763afa6 /config/init-rust.el
parenti want the eglot buffer to debug stuff (diff)
downloademacs.d-38593df6bb457fc3940fcef1d93976cd56b0a2d0.tar.gz
massive cleanup
Diffstat (limited to 'config/init-rust.el')
-rw-r--r--config/init-rust.el27
1 files changed, 0 insertions, 27 deletions
diff --git a/config/init-rust.el b/config/init-rust.el
deleted file mode 100644
index 8aa8034..0000000
--- a/config/init-rust.el
+++ /dev/null
@@ -1,27 +0,0 @@
-;;; init-rust.el --- Configuration for rust -*- lexical-binding: t -*-
-;; Author: Franck Cuny <franck@fcuny.net>
-
-;;; Commentary:
-
-;; configuration for rust
-
-;;; Code:
-
-(use-package rust-mode
-  :ensure t
-  :defer t
-  :hook ((rust-mode . eglot-ensure))
-  :mode ("\\.rs\\'" . rust-mode)
-  :custom
-  (rust-format-on-save t))
-
-(use-package cargo-mode
-  :ensure t
-  :defer t
-  :hook (rust-mode . cargo-minor-mode)
-  :custom
-  (compilation-scroll-output t))
-
-(provide 'init-rust)
-
-;;; init-rust.el ends here