summaryrefslogtreecommitdiffstats
path: root/lisp/init-rust-mode.el
blob: e44425e1a290e61bd10bd6201808333a39f8e99d (plain) (blame)
1
2
3
4
5
6
7
8
9
(use-package rust-mode
  :init
  (setq rust-format-on-save t)

  :bind (:map rust-mode-map
              ;; C-c p runs rustfmt on the buffer
              ("C-c p" . rust-format-buffer)))

(provide 'init-rust-mode)