Remove personal path references from defaults and examples
All checks were successful
continuous-integration/drone/tag Build is passing

Replace machine-specific paths with generic examples.
This commit is contained in:
Cinco Euzebio 2026-02-28 19:22:06 -03:00
parent 9c7823475c
commit 8ab3c15983
3 changed files with 5 additions and 6 deletions

View File

@ -39,8 +39,8 @@ Example configuration:
```toml ```toml
# List of paths where to search for projects (git repositories) # List of paths where to search for projects (git repositories)
paths = [ paths = [
"~/Work/Projects", "~/Projects",
"~/Work/DECEA/ATD/repos/gitlab.devops.decea.intraer", # "~/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

@ -18,9 +18,8 @@
# Supports ~ for home directory expansion # Supports ~ for home directory expansion
paths = [ paths = [
"~/Work/Projects", "~/Projects",
"~/Work/DECEA/ATD/repos/gitlab.devops.decea.intraer", # "~/work",
# "~/personal",
# "~/opensource", # "~/opensource",
# "~/clients/company-name", # "~/clients/company-name",
] ]