Compare commits

...

3 Commits

Author SHA1 Message Date
Tom Alexander
ae43050061
Install clippy on linux. 2023-10-16 19:52:35 -04:00
Tom Alexander
05c3b0c1dc
Update rust. 2023-10-16 19:52:35 -04:00
Tom Alexander
47c36a82bf
Remove the sorting in company.
It wasn't really that much of an improvement.
2023-10-16 19:52:35 -04:00
3 changed files with 6 additions and 2 deletions

View File

@ -38,7 +38,6 @@
:hook (eglot-managed-mode . company-mode)
:config
(setq company-backends '((company-capf)))
(setq company-transformers '(company-sort-by-occurrence))
)
;; (use-package company-box

View File

@ -1,2 +1,2 @@
# Check that rust-analyzer is valid for date on https://rust-lang.github.io/rustup-components-history/
rust_date: "2023-09-02"
rust_date: "2023-10-16"

View File

@ -14,6 +14,11 @@
args:
creates: "{{ account_homedir.stdout }}/.rustup/toolchains/nightly-{{ rust_date }}-x86_64-unknown-linux-gnu/lib/rustlib/manifest-rust-src"
- name: Install clippy
command: rustup component add clippy
args:
creates: "{{ account_homedir.stdout }}/.rustup/toolchains/nightly-{{ rust_date }}-x86_64-unknown-linux-gnu/bin/cargo-clippy"
- name: Create directories
file:
name: "{{ account_homedir.stdout }}/{{ item }}"