fix(language/rust): set rust-playground basedir so lsp-mode works correctly

The default basedir is within the user's Emacs config directory, which
is likely to already be a lsp workdir.
This commit is contained in:
2023-02-07 19:07:13 +00:00
parent a30e06c9bb
commit 346b22a06b

View File

@@ -84,7 +84,9 @@
:defer t
:general
(:keymaps 'rust-playground-mode-map
"C-<return>" 'rust-playground-exec))
"C-<return>" 'rust-playground-exec)
:custom
(rust-playground-basedir (expand-file-name "~/.rust/playground")))
(provide 'siren-rust)
;;; siren-rust.el ends here