;;; my-lang-rust.el --- configure emacs for rust -*- lexical-binding: t -*- ;; Author: Franck Cuny ;;; Commentary: ;;; Code: (require 'rustic) (require 'lsp-rust) (setq rustic-lsp-server 'rust-analyzer) (setq rustic-lsp-client 'lsp-mode) (setq rustic-format-on-save t) (add-hook 'rustic-mode-hook #'lsp-rust-analyzer-inlay-hints-mode) (provide 'my-lang-rust) ;;; my-lang-rust.el ends here