diff --git a/README.md b/README.md index b73e7ca..f89d90a 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/config.rs b/src/config.rs index 8996944..e188db2 100644 --- a/src/config.rs +++ b/src/config.rs @@ -102,7 +102,7 @@ impl Config { paths: vec![ dirs::home_dir() .unwrap_or_default() - .join("Work/Projects") + .join("Projects") .to_string_lossy() .to_string(), ], diff --git a/tmuxido.toml.example b/tmuxido.toml.example index b07e442..a5bb554 100644 --- a/tmuxido.toml.example +++ b/tmuxido.toml.example @@ -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", ]