summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/dev/new.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/dev/new.rs b/src/dev/new.rs
index c765046..154cd22 100644
--- a/src/dev/new.rs
+++ b/src/dev/new.rs
@@ -6,7 +6,7 @@ use std::{
process::Command,
};
-use crate::CURRENT_FORMAT_VERSION;
+use crate::{init::RUST_ANALYZER_TOML, CURRENT_FORMAT_VERSION};
// Create a directory relative to the current directory and print its path.
fn create_rel_dir(dir_name: &str, current_dir: &str) -> Result<()> {
@@ -62,6 +62,8 @@ pub fn new(path: &Path, no_git: bool) -> Result<()> {
write_rel_file("README.md", &dir_path_str, README)?;
+ write_rel_file("rust-analyzer.toml", &dir_path_str, RUST_ANALYZER_TOML)?;
+
create_rel_dir(".vscode", &dir_path_str)?;
write_rel_file(
".vscode/extensions.json",