-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmise.toml
More file actions
127 lines (117 loc) · 4.71 KB
/
Copy pathmise.toml
File metadata and controls
127 lines (117 loc) · 4.71 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
[bootstrap.packages]
# Not currently included mise packages
# | `alchemmist/tap/lazy-tmux` | Not in official repos — only exists as an AUR package (`lazy-tmux`), which plain `pacman` can't install |
# | `claude-cmd` | No Arch or AUR package found at all |
# | `pi-coding-agent` | AUR-only (several competing packages: `pi-coding-agent`, `-bin`, `-git`), nothing official |
"brew:alchemmist/tap/lazy-tmux" = "latest"
"brew:bat" = "latest"
"brew:btop" = "latest"
"brew:chezmoi" = "latest"
"brew:claude-cmd" = "latest"
"brew:colima" = "latest"
"brew:coreutils" = "latest"
"brew:docker" = "latest"
"brew:docker-buildx" = "latest"
"brew:docker-compose" = "latest"
"brew:eza" = "latest"
"brew:fd" = "latest"
"brew:fish" = "latest"
"brew:fzf" = "latest"
"brew:gawk" = "latest"
"brew:git-delta" = "latest"
"brew:gnu-getopt" = "latest"
"brew:gnu-sed" = "latest"
"brew:gnu-tar" = "latest"
"brew:gnu-which" = "latest"
"brew:gnupg" = "latest"
"brew:go" = "latest"
"brew:grep" = "latest"
"brew:make" = "latest"
"brew:mise" = "latest"
"brew:neovim" = "latest"
"brew:pi-coding-agent" = "latest"
"brew:pnpm" = "latest"
"brew:postgresql@16" = "latest"
"brew:qemu" = "latest"
"brew:rbw" = "latest"
"brew:reattach-to-user-namespace" = "latest"
"brew:ripgrep" = "latest"
"brew:rustup" = "latest"
"brew:temporalio/brew/tcld" = "latest"
"brew:tmux" = "latest"
"brew:tree-sitter-cli" = "latest"
"brew:watch" = "latest"
"brew:xh" = "latest"
"brew:yq" = "latest"
"pacman:bat" = "latest"
"pacman:btop" = "latest"
"pacman:chezmoi" = "latest"
"pacman:docker" = "latest"
"pacman:docker-buildx" = "latest"
"pacman:docker-compose" = "latest"
"pacman:eza" = "latest"
"pacman:fd" = "latest"
"pacman:fish" = "latest"
"pacman:fzf" = "latest"
"pacman:gawk" = "latest"
"pacman:git-delta" = "latest"
"pacman:gnupg" = "latest"
"pacman:go" = "latest"
"pacman:go-yq" = "latest"
"pacman:make" = "latest"
"pacman:mise" = "latest"
"pacman:neovim" = "latest"
"pacman:pnpm" = "latest"
"pacman:qemu-full" = "latest"
"pacman:rbw" = "latest"
"pacman:ripgrep" = "latest"
"pacman:rustup" = "latest"
"pacman:tmux" = "latest"
"pacman:tree-sitter-cli" = "latest"
"pacman:xh" = "latest"
[tools]
stylua = "2"
[tasks.nvim-lazy-lock-check]
description = "Ensure nvim's lazy-lock.json is in sync"
run = """
LOCKFILE_PATH=dot_config/nvim/lazy-lock.json
if [ ! -f $LOCKFILE_PATH ]; then
echo "Cannot find chezmoi's neovim lockfile at $LOCKFILE_PATH"
exit 1
fi
diff $LOCKFILE_PATH $(chezmoi target-path $LOCKFILE_PATH)
RESULT=$?
if [ $RESULT -ne 0 ]; then
echo
echo "Neovim's plugin lockfile is out of sync with the state in chezmoi"
fi
exit $RESULT
"""
[tasks.nvim-spellfile-check]
description = "Ensure nvim's spellfile is in sync"
run = """
SPELLFILE=dot_local/share/nvim/site/spell/en.utf-8.add
if [ ! -f $SPELLFILE ]; then
echo "Cannot find chezmoi's neovim spellfile at $SPELLFILE"
exit 1
fi
diff $SPELLFILE $(chezmoi target-path $SPELLFILE)
RESULT=$?
if [ $RESULT -ne 0 ]; then
echo
echo "Neovim's local spellfile is out of sync with the state in chezmoi"
fi
exit $RESULT
"""
[tasks.nvim-spellfile-update]
description = "Update nvim's spellfile to match the current state in use on this machine"
run = "chezmoi re-add ~/.local/share/nvim/site/spell/en.utf-8.add"
[tasks.nvim-lazy-lock-update]
description = "Update nvim's lazy-lock.json to match the current state in use on this machine"
run = "chezmoi re-add ~/.config/nvim/lazy-lock.json"
[tasks.format-lua]
description = "Format Lua files using stylua"
usage = """
arg "[files]" help="The file(s) to format" var=#true
"""
run = "stylua ${usage_files:-dot_config/nvim dot_hammerspoon}"