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
# List of paths where to search for projects (git repositories)
paths = [
"~/Work/Projects",
"~/Work/DECEA/ATD/repos/gitlab.devops.decea.intraer",
"~/Projects",
# "~/work",
]
# Maximum depth to search for .git directories

View File

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

View File

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