summaryrefslogtreecommitdiffstats
path: root/lisp/init-rust.el
blob: eab586367596a3d81d7c8827e358a1f9e605c636 (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 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