diff options
author | Franck Cuny <franck@fcuny.net> | 2022-10-14 17:44:19 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-10-14 17:44:19 -0700 |
commit | cecfed659a53c1b72ac16ab5e2bfa4170067bc81 (patch) | |
tree | 1928824419176ff2d6b266844f52f4fb920c6c7c | |
parent | ref(python): use black when available (diff) | |
download | emacs.d-cecfed659a53c1b72ac16ab5e2bfa4170067bc81.tar.gz |
ref(rust): delete the module
I'm not going to need this Change-Id: I692dbbaf14c574b988aa9989057c06a553971e1c
-rw-r--r-- | emacs/custom/my-lang-rust.el | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/emacs/custom/my-lang-rust.el b/emacs/custom/my-lang-rust.el deleted file mode 100644 index e6374a7..0000000 --- a/emacs/custom/my-lang-rust.el +++ /dev/null @@ -1,24 +0,0 @@ -;;; my-lang-rust.el --- configure emacs for rust -*- lexical-binding: t -*- -;; Author: Franck Cuny <franck@fcuny.net> - -;;; Commentary: - -;;; Code: - -(require 'rustic) -(require 'lsp-rust) - -(setq lsp-rust-analyzer-cargo-watch-enable t) -(setq lsp-rust-analyzer-proc-macro-enable t) -(setq lsp-rust-full-docs t) -(setq lsp-rust-server 'rust-analyzer) - -(setq rustic-format-on-save t) -(setq rustic-lsp-client 'lsp-mode) -(setq rustic-lsp-server 'rust-analyzer) - -(add-hook 'rusti-mode-hook #'lsp-deferred) - -(provide 'my-lang-rust) - -;;; my-lang-rust.el ends here |