Added support for sdkman
This commit is contained in:
parent
c6b217da10
commit
c15a5afc47
|
@ -1 +1 @@
|
||||||
Subproject commit fd4571d1b02ac68833a5b5c166395434723b9128
|
Subproject commit ae0de1135dc96cfabe31d70f65112cbeadbfa3bf
|
|
@ -1 +1 @@
|
||||||
Subproject commit 43f3bc4010b2c697d2252fdd8b36a577ea125881
|
Subproject commit 4016ff795bb184461996c5539327befc8da2af6f
|
|
@ -1 +1 @@
|
||||||
Subproject commit b512d57b6d0d2b85368a8068ec1a13288a93d267
|
Subproject commit 922eee0706acb111e9678ac62ee77801941d6df2
|
3
zshrc
3
zshrc
|
@ -13,6 +13,9 @@ typeset -U PATH path fpath
|
||||||
path=( /bin /sbin /usr/bin /usr/sbin $path )
|
path=( /bin /sbin /usr/bin /usr/sbin $path )
|
||||||
[[ -d ~/bin ]] && path=( ~/bin $path )
|
[[ -d ~/bin ]] && path=( ~/bin $path )
|
||||||
|
|
||||||
|
# sdkman support
|
||||||
|
[[ -f ~/.sdkman/bin/sdkman-init.sh ]] && source ~/.sdkman/bin/sdkman-init.sh
|
||||||
|
|
||||||
# Set funtion paths
|
# Set funtion paths
|
||||||
foreach local p in ~/.local/share/zsh/functions ~/.config/zsh/functions $extra_fpath
|
foreach local p in ~/.local/share/zsh/functions ~/.config/zsh/functions $extra_fpath
|
||||||
[[ -d "$p" ]] && fpath=( "$p" $fpath )
|
[[ -d "$p" ]] && fpath=( "$p" $fpath )
|
||||||
|
|
Loading…
Reference in New Issue