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

(use-package rust-mode
  :ensure t
  :bind (:map rust-mode-map
              ("C-c l" . rust-clippy)
              ("C-c t" . rust-test)
              ("C-c R" . rust-run)))

(provide 'init-rust)

;;; init-rust.el ends here