Mercurial > dotfiles
view .elisp/settings/99.rust.el @ 532:f452d7f26e04 default tip
vcs_functions: add jj status to current branch info
This causes jj info to show up in my prompt. The first change to this since
2018!
| author | Augie Fackler <raf@durin42.com> |
|---|---|
| date | Sat, 11 Jul 2026 21:28:08 -0400 |
| 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))
