summary refs log tree commit diff
path: root/emacs/custom/my-lang-rust.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/custom/my-lang-rust.el')
-rw-r--r--emacs/custom/my-lang-rust.el24
1 files changed, 24 insertions, 0 deletions
diff --git a/emacs/custom/my-lang-rust.el b/emacs/custom/my-lang-rust.el
new file mode 100644
index 0000000..e6374a7
--- /dev/null
+++ b/emacs/custom/my-lang-rust.el
@@ -0,0 +1,24 @@
+;;; 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