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

(use-package rust-mode
  :ensure t
  :mode ("\\.rs\\'" . rust-mode)
  :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