summaryrefslogtreecommitdiffstats
path: root/lisp/init-rust.el
blob: 69e7048a48bb637c90a857bb222de45414cfaeaa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
(use-package rust-mode
  :ensure t
  :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)