Skip to content

Commit c443165

Browse files
committed
Upgrade Brewfile, fixed SDKMAN setup
1 parent 9a9c48d commit c443165

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

Brewfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
tap "kaplanelad/tap", trusted: true
2-
tap "lihaoyun6/tap", trusted: true
3-
tap "sdkman/tap", trusted: true
42
# Search tool like grep, but optimized for programmers
53
brew "ack"
64
# Run your GitHub Actions locally
@@ -27,6 +25,8 @@ brew "bat"
2725
brew "bat-extras"
2826
# Resource monitor. C++ version and continuation of bashtop and bpytop
2927
brew "btop"
28+
# Read-only developer endpoint scanner for supply-chain exposure
29+
brew "bumblebee"
3030
# Manage your dotfiles across multiple diverse machines, securely
3131
brew "chezmoi"
3232
# GNU File, Shell, and Text utilities
@@ -69,6 +69,8 @@ brew "hunk"
6969
brew "k3d"
7070
# Kubernetes CLI To Manage Your Clusters In Style!
7171
brew "k9s"
72+
# Static analysis tool for Kubernetes YAML files and Helm charts
73+
brew "kube-linter"
7274
# Kubernetes command-line interface
7375
brew "kubernetes-cli"
7476
# Lazier way to manage everything docker
@@ -141,18 +143,16 @@ brew "yamllint"
141143
brew "yazi"
142144
# Process YAML, JSON, XML, CSV and properties documents from the CLI
143145
brew "yq"
146+
# Find security issues in GitHub Actions setups
147+
brew "zizmor"
144148
# Shell extension to navigate your filesystem faster
145149
brew "zoxide"
146150
# Intercept any risky patterns (default or defined by you) and prompt you a small challenge for double verification
147151
brew "kaplanelad/tap/shellfirm"
148-
# SDKMAN! the Software Development Kit Manager
149-
brew "sdkman/tap/sdkman-cli"
150152
# Stand alone ad blocker
151153
cask "adguard"
152154
# Image editing and design software
153155
cask "affinity"
154-
# Get the battery level of all your devices on your Mac.
155-
cask "lihaoyun6/tap/airbattery"
156156
# Official eID-Client of the Federal Government of Germany
157157
cask "ausweisapp"
158158
# Integrated CAD, CAM, CAE, and PCB software

dot_zsh/tools.zsh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ export NVM_DIR="$HOME/.nvm"
1212
source ~/.safe-chain/scripts/init-posix.sh # Safe-chain Zsh initialization script
1313

1414
# SDKMAN
15-
export SDKMAN_DIR=$(brew --prefix sdkman-cli)/libexec
16-
[[ -s "${SDKMAN_DIR}/bin/sdkman-init.sh" ]] && source "${SDKMAN_DIR}/bin/sdkman-init.sh"
15+
export SDKMAN_DIR="$HOME/.sdkman"
16+
source "$HOME/.sdkman/bin/sdkman-init.sh"
1717

1818
# OrbStack
1919
source ~/.orbstack/shell/init.zsh 2>/dev/null || :

0 commit comments

Comments
 (0)