summary refs log tree commit diff
path: root/emacs.d/config/fcuny-rust.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs.d/config/fcuny-rust.el')
-rw-r--r--emacs.d/config/fcuny-rust.el24
1 files changed, 0 insertions, 24 deletions
diff --git a/emacs.d/config/fcuny-rust.el b/emacs.d/config/fcuny-rust.el
deleted file mode 100644
index 8b3fe49..0000000
--- a/emacs.d/config/fcuny-rust.el
+++ /dev/null
@@ -1,24 +0,0 @@
-(eval-when-compile
-  (require 'use-package))
-
-(use-package rust-mode
-  :ensure t
-  :config
-
-  (use-package toml-mode :ensure t)
-
-  (use-package racer :ensure t)
-
-  (use-package company-racer :ensure t)
-
-  (use-package cargo
-    :ensure t
-    :hook ((rust-mode . cargo-minor-mode)
-           (rust-mode . eldoc-mode)
-           (rust-mode . race-mode))
-    :custom
-    (compilation-ask-about-save nil)
-    (rust-format-on-save t)
-    (rust-rustfmt-bin "/Users/fcuny/.cargo/bin/rustfmt")))
-
-(provide 'fcuny-rust)