mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-28 11:45:44 +00:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c5e6860595 | |||
| b5a3c34fc3 | |||
| 87c89cf828 | |||
|
|
8d57c9425e | ||
|
|
cfe97d81a7 | ||
| 2f13ad324a |
@@ -1 +1 @@
|
||||
3.13.0
|
||||
3.13.1
|
||||
|
||||
@@ -23,6 +23,7 @@ zstyle ':omz:plugins:nvm' autoload yes
|
||||
# Pure prompt settings
|
||||
export PURE_PROMPT_SYMBOL='➜'
|
||||
export PURE_GIT_UNTRACKED_DIRTY=0
|
||||
export PURE_CMD_MAX_EXEC_TIME=86400 # 24 hours
|
||||
zstyle ':prompt:pure:git:stash' show yes
|
||||
zstyle ':prompt:pure:execution_time' show no
|
||||
zstyle ':prompt:pure:user' color magenta
|
||||
|
||||
@@ -416,7 +416,7 @@ section_helpers()
|
||||
"env:Show environment variables"
|
||||
"functions:Show functions"
|
||||
"nvim:Show nvim keybindings"
|
||||
"path:Show \$PATH dir by dir"
|
||||
'path:Show $PATH dir by dir'
|
||||
"tmux:Show tmux keybindings"
|
||||
"wezterm:Show wezterm keybindings"
|
||||
)
|
||||
@@ -564,12 +564,12 @@ section_check()
|
||||
|
||||
case "$1" in
|
||||
a | arch)
|
||||
[[ "$2" = "" ]] && echo "$X_ARCH" && exit 0
|
||||
[[ $X_ARCH = "$2" ]] && exit 0 || exit 1
|
||||
[[ $2 == "" ]] && echo "$X_ARCH" && exit 0
|
||||
[[ $X_ARCH == "$2" ]] && exit 0 || exit 1
|
||||
;;
|
||||
h | host | hostname)
|
||||
[[ "$2" = "" ]] && echo "$X_HOSTNAME" && exit 0
|
||||
[[ $X_HOSTNAME = "$2" ]] && exit 0 || exit 1
|
||||
[[ $2 == "" ]] && echo "$X_HOSTNAME" && exit 0
|
||||
[[ $X_HOSTNAME == "$2" ]] && exit 0 || exit 1
|
||||
;;
|
||||
*) menu_usage "$USAGE_PREFIX" "${MENU[@]}" ;;
|
||||
esac
|
||||
|
||||
@@ -52,7 +52,6 @@ update_asdf()
|
||||
asdf global asdf-plugin-manager "$(asdf latest asdf-plugin-manager)"
|
||||
asdf-plugin-manager version
|
||||
asdf-plugin-manager add-all
|
||||
asdf-plugin-manager update-all
|
||||
asdf-plugin-manager export > "${ASDF_PLUGIN_MANAGER_PLUGIN_VERSIONS_FILENAME}"
|
||||
|
||||
asdf install
|
||||
@@ -76,8 +75,6 @@ install_asdf_plugins()
|
||||
URL=$(echo "${item}" | awk -F ":" '{print $2}')
|
||||
|
||||
asdf plugin add "${CMD}" "https://${URL}"
|
||||
asdf install "${CMD}" latest
|
||||
asdf global "${CMD}" "$(asdf latest "${CMD}")"
|
||||
done
|
||||
|
||||
msg "Exporting asdf plugin versions"
|
||||
|
||||
Reference in New Issue
Block a user