diff options
Diffstat (limited to 'emacs/custom')
-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 |