-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.kdl
52 lines (48 loc) · 1.31 KB
/
config.kdl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Configure the list of search paths used to search for valid workspaces.
// Tux uses these valid workspaces as options to attach to.
/-paths {
// Workspace paths are paths to recursivly search to find valid workspaces.
// Tux will recursivly search the workspace paths until the max depth is
// reached. To override the default workspace value set optional
// `default=#false`.
//
// Default:
// - "~"
//
/-workspace default=#true {
- "~/code"
}
// Single paths are paths that are added to the list of valid workspace
// paths. This is useful if you want to add a path that would not be defined
// as a valid workspace.
//
// Default: (empty)
//
/-single default=#false {
- "~/.config/nvim"
}
}
// Search depth for workspace paths.
// Default: 5
//
/-depth 3
// Select the repositories remote default branch if multiple worktrees are found. If the default
// worktree cannot be found the fallback will be to select the correct one.
//
// Default: #false
//
/-default_worktree #true
// Workspace directory crawler will prune the paths containing any of these components.
// Options:
// - default: boolean = #true # Append to default value if true.
//
// Default:
// exclude_path default=#true {
// - ".direnv"
// - "node_modules"
// }
//
/-exclude_path {
- ".direnv"
- "node_modules"
}