diff options
author | Franck Cuny <franck@fcuny.net> | 2024-09-28 11:19:22 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-09-28 11:19:22 -0700 |
commit | f267c5492fc5cc0bfef139dec5bbd2b10d6f927a (patch) | |
tree | b41c4485ed1cac16581da5fe788c97f979e44227 | |
parent | configure the nix formatter for nil (diff) | |
download | emacs.d-f267c5492fc5cc0bfef139dec5bbd2b10d6f927a.tar.gz |
remove rust configuration
-rw-r--r-- | config/init-programming.el | 14 |
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 |