-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmise.toml
More file actions
48 lines (37 loc) · 1.28 KB
/
mise.toml
File metadata and controls
48 lines (37 loc) · 1.28 KB
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
[tasks.help]
description = "List available tasks"
run = "zsh script/help.zsh"
[tasks.update]
description = "Fetch latest changes (including submodules)"
run = "zsh script/update.zsh"
[tasks.list]
description = "Show dotfiles to deploy"
run = "zsh script/list.zsh"
[tasks.clean]
description = "Remove deployed symlinks from $HOME"
run = "zsh script/clean.zsh"
[tasks.prepare-subdirs]
description = "Ensure required subdirectories exist (from .deploy_subdir)"
hide = true
run = "zsh script/prepare-subdirs.zsh"
[tasks.deploy]
description = "Deploy dotfiles to $HOME via stow"
depends = ["clean", "prepare-subdirs"]
run = "zsh script/deploy.zsh"
[tasks.install-apps]
description = "Install apps via Brewfile (Linux/macOS)"
run = "zsh script/install-apps.zsh"
[tasks.defaults]
description = "Apply macOS defaults"
run = "zsh script/defaults.zsh"
[tasks.theme]
description = "Install Terminal theme (macOS)"
run = "zsh script/theme.zsh"
[tasks.gc1-build]
description = "Build git-credential-1password and deploy to bin/"
run = "zsh tools/build-git-credential-1password.sh"
[tasks.gc1-update]
description = "Update git-credential-1password submodule and rebuild"
run = "cd tools/git-credential-1password && git pull && cd - > /dev/null && zsh tools/build-git-credential-1password.sh"
[tools]
go = "latest"