Remove personal path references from defaults and examples
Some checks failed
continuous-integration/drone/tag Build is failing

Replace machine-specific paths with generic examples.
This commit is contained in:
Cinco Euzebio 2026-02-28 19:22:06 -03:00
parent 71da4149b8
commit 562febaafe
3 changed files with 3 additions and 1 deletions

View File

@ -40,6 +40,7 @@ Example configuration:
# List of paths where to search for projects (git repositories) # List of paths where to search for projects (git repositories)
paths = [ paths = [
"~/Projects", "~/Projects",
# "~/work",
] ]
# Maximum depth to search for .git directories # Maximum depth to search for .git directories

View File

@ -102,7 +102,7 @@ impl Config {
paths: vec![ paths: vec![
dirs::home_dir() dirs::home_dir()
.unwrap_or_default() .unwrap_or_default()
.join("Work/Projects") .join("Projects")
.to_string_lossy() .to_string_lossy()
.to_string(), .to_string(),
], ],

View File

@ -19,6 +19,7 @@
paths = [ paths = [
"~/Projects", "~/Projects",
# "~/work",
# "~/opensource", # "~/opensource",
# "~/clients/company-name", # "~/clients/company-name",
] ]