mirror of
https://github.com/Xevion/dotfiles.git
synced 2025-12-06 03:14:52 -06:00
- Add SDKMAN initialization to bashrc for Java SDK management - Create Fish shell wrapper function for SDKMAN commands - Switch from lazy-loading to automatic mise activation in Fish - Clean up fish_plugins comments for clarity - Add pnpm to mise tool-versions - Enable Shift+Enter in Kitty for Claude Code multi-line prompts - Make update_pre.ts hook executable
5 lines
174 B
Fish
5 lines
174 B
Fish
function sdk --description 'SDKMAN wrapper for Fish shell'
|
|
# Run sdk commands in a Bash subshell
|
|
bash -c "source '$HOME/.sdkman/bin/sdkman-init.sh' && sdk $argv"
|
|
end
|