Compare commits

...

2 Commits

Author SHA1 Message Date
359ff66c2e fix nvim ime: macOS install macism 2025-05-06 18:07:37 +08:00
f3000a5885 Revert "fix nvim ime: macOS install macism"
This reverts commit c0b3a3f738e7bf3dee5a68f493ae7148c8070625.
2025-05-06 18:06:16 +08:00
2 changed files with 8 additions and 1 deletions

View File

@ -1,5 +1,9 @@
# macOS ------------------------------------------------------------------------
[packages.darwin]
taps = [
'laishulu/homebrew',
]
brews = [
'chezmoi',
'git',
@ -18,7 +22,7 @@ brews = [
'nodejs',
'java',
'jstkdng/programs/ueberzugpp',
'laishulu/homebrew/macism',
'macism',
]
casks = [

View File

@ -6,6 +6,9 @@ command -v brew >/dev/null 2>&1 || \
(echo '🍺 Installing Homebrew' && /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)")
brew bundle --file=/dev/stdin <<EOF
{{ range .packages.darwin.taps -}}
tap {{ . | quote }}
{{ end -}}
{{ range .packages.darwin.brews -}}
brew {{ . | quote }}
{{ end -}}