summary refs log tree commit diff
path: root/config
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-09-28 11:19:22 -0700
committerFranck Cuny <franck@fcuny.net>2024-09-28 11:19:22 -0700
commitf267c5492fc5cc0bfef139dec5bbd2b10d6f927a (patch)
treeb41c4485ed1cac16581da5fe788c97f979e44227 /config
parentconfigure the nix formatter for nil (diff)
downloademacs.d-f267c5492fc5cc0bfef139dec5bbd2b10d6f927a.tar.gz
remove rust configuration
Diffstat (limited to 'config')
-rw-r--r--config/init-programming.el14
1 files changed, 0 insertions, 14 deletions
diff --git a/config/init-programming.el b/config/init-programming.el
index 8bd0fd5..e3ddee0 100644
--- a/config/init-programming.el
+++ b/config/init-programming.el
@@ -66,7 +66,6 @@
 	      ("C-c l f" . eglot-format-buffer))
   :hook ((go-mode     . eglot-ensure)
 	 (python-mode . eglot-ensure)
-	 (rust-mode   . eglot-ensure)
 	 (nix-mode    . eglot-ensure))
   :custom
   (eglot-send-changes-idle-time 0.1)
@@ -133,19 +132,6 @@
 
 (use-package ruby-mode)
 
-(use-package rust-mode
-  :ensure t
-  :defer t
-  :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))
-
 ;;; flymake related configuration
 (use-package flymake
   :ensure nil