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

(use-package rustic
  :ensure t
  :init
  ;; let init-eglot handle lsp integration
  (setq rustic-lsp-setup-p nil)
  (setq rustic-lsp-client 'eglot))

(provide 'init-rust)

;;; init-rust.el ends here