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

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

(provide 'init-rust)

;;; init-rust.el ends here