diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-03-17T20·54+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-03-17T20·54+0100 |
commit | ace425793a5d4739400533e3512417c5b5ce0d33 (patch) | |
tree | 6931dc7ce6af5167783c07053d58d26240f55cf8 | |
parent | 7d13aa41484f15dcfd8eb671138813e477e55e37 (diff) |
fix(rust): Fix Rust source path for >1.20
-rw-r--r-- | init/rust-setup.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/rust-setup.el b/init/rust-setup.el index b1a568152778..df9633da5c66 100644 --- a/init/rust-setup.el +++ b/init/rust-setup.el @@ -16,6 +16,6 @@ ;; I don't use rustup and I'm not sure which derivation would normally place ;; Rust sources in the nix-store, so I'll continue using my local Rust checkout. -(setq racer-rust-src-path "~/source/rust") +(setq racer-rust-src-path "~/source/rust/src") (provide 'rust-setup) |