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