summaryrefslogtreecommitdiffstats
path: root/lisp/init-rust.el
blob: 4b755dbd0d9264834f1117adf881512cbc62243a (plain) (blame)
1
2
3
4
5
6
7
8
(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)