Mercurial > dotfiles
view .elisp/settings/99.rust.el @ 445:b0264224e2ec
compilation tweaks: tried and failed to fix hg compilation stuff
I can't figure out why it's not working, but it's at least a little
more hackable now.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Sat, 30 Sep 2017 06:47:10 -0400 |
parents | 98484e1f564f |
children | f08193904d93 |
line wrap: on
line source
(use-package rust-mode :config (add-hook 'rust-mode-hook (lambda () (local-set-key (kbd "C-c <tab>") #'rust-format-buffer)))) (use-package cargo :config (add-hook 'rust-mode-hook 'cargo-minor-mode)) (use-package company :init (use-package racer :init (add-hook 'rust-mode-hook #'racer-mode) (add-hook 'racer-mode-hook #'eldoc-mode) (add-hook 'racer-mode-hook #'company-mode) (setq company-tooltip-align-annotations t) )) (use-package flycheck-rust :init (add-hook 'flycheck-mode-hook #'flycheck-rust-setup) (add-hook 'rust-mode-hook 'flycheck-mode) )