summary refs log tree commit diff
path: root/emacs/custom/my-lang-rust.el
blob: b0d3904157adbaa468aeb95356d1f2c5579b027e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
;;; my-lang-rust.el --- configure emacs for rust -*- lexical-binding: t -*-
;; Author: Franck Cuny <franck@fcuny.net>

;;; 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