diff --git a/README.md b/README.md index c3375c8..f89d90a 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ Example configuration: # List of paths where to search for projects (git repositories) paths = [ "~/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 5728699..a5bb554 100644 --- a/tmuxido.toml.example +++ b/tmuxido.toml.example @@ -19,6 +19,7 @@ paths = [ "~/Projects", + # "~/work", # "~/opensource", # "~/clients/company-name", ]