summaryrefslogtreecommitdiffstats
path: root/lisp/init-rust.el
blob: de12f206092e5b3c760a625decbe227aea5ede6d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
;;; init-rust.el --- configure rust language support  -*- lexical-binding:t -*-
;;; Commentary:
;;; Code:

(use-package rustic
  :ensure t
  :config
  (setq rustic-lsp-client 'eglot)
  (setq rustic-format-on-save t))

(provide 'init-rust)

;;; init-rust.el ends here