about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2021-08-24T13·55-0400
committergrfn <grfn@gws.fyi>2021-08-26T13·45+0000
commit5ba19ec2a29bcc89c93097208f065ebddb3dbe70 (patch)
tree4a15dfe61c9f60398e9f6c6989660d65eaf847ba
parenta1205f0565b41c9a2c8d3c723b5092e677822f4b (diff)
fix(grfn/system): Fix rust-analyzer target dir r/2781
This was missing a path segment, plus calling it rust-analyzer makes it
clearer what's going on

Change-Id: I8f71fe1b438d72f743472ab10ec939f686ad0da1
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3424
Reviewed-by: grfn <grfn@gws.fyi>
Tested-by: BuildkiteCI
-rw-r--r--users/grfn/emacs.d/rust.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/users/grfn/emacs.d/rust.el b/users/grfn/emacs.d/rust.el
index af2150db49..689d843e78 100644
--- a/users/grfn/emacs.d/rust.el
+++ b/users/grfn/emacs.d/rust.el
@@ -14,7 +14,7 @@
   (setq rust-format-show-buffer nil)
   (setq lsp-rust-analyzer-import-merge-behaviour "last"
         lsp-rust-analyzer-cargo-watch-command "clippy"
-        lsp-rust-analyzer-cargo-watch-args ["--target-dir" "/home/grfn/readyset/readyset/target/check"]
+        lsp-rust-analyzer-cargo-watch-args ["--target-dir" "/home/grfn/code/readyset/readyset/target/rust-analyzer"]
         lsp-ui-doc-enable t)
   (rust-enable-format-on-save)
   (lsp))