Mercurial > dotfiles
view .elisp/settings/99.rust.el @ 530:dbb75edda2ff default tip
cleanup: remove ancient distnoted reaper script
Surely this bug has been fixed in the 9+ years that the script has
been run once a minute by cron on my laptop. To my surprise, it looks
like the Migration Assistant even managed to carry it across laptops!
| author | Augie Fackler <raf@durin42.com> |
|---|---|
| date | Sat, 03 Jan 2026 19:12:16 -0500 |
| parents | 7d298a83fceb |
| children |
line wrap: on
line source
(use-package flycheck :hook (prog-mode . flycheck-mode)) (use-package company :hook (prog-mode . company-mode) :config (setq company-tooltip-align-annotations t) (setq company-minimum-prefix-length 1)) (use-package lsp-mode :commands lsp :config (require 'lsp-clients)) (use-package lsp-ui) (use-package toml) (use-package rust-mode :hook (rust-mode . lsp) :config (add-hook 'rust-mode-hook (lambda () (local-set-key (kbd "C-c <tab>") #'rust-format-buffer)))) ;; Add keybindings for interacting with Cargo (use-package cargo :hook (rust-mode . cargo-minor-mode)) (use-package flycheck-rust :config (add-hook 'flycheck-mode-hook #'flycheck-rust-setup))
