forked from ohmyzsh/ohmyzsh
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh
* 'master' of https://github.com/robbyrussell/oh-my-zsh: (181 commits) jump: fix printf path output (ohmyzsh#7105) vi-mode: reset-prompt if zle is active (TRAPWINCH) fix nmap vuln category name (ohmyzsh#7044) Update kubectl.plugin.zsh (ohmyzsh#6636) Fix rvm-prompt usage in fino* themes (ohmyzsh#6477) vi-mode show indicator on zle-line-init and SIGWINCH (ohmyzsh#6449) execute mvnw with "mvn" when mvnw-file is present (ohmyzsh#6484) executing gradlew, when gradlew-file exists (ohmyzsh#6485) Fixed `fwl` function in `firewalld` plugin when `sources` used (ohmyzsh#7011) kubectl: add alias for `kubectl cp` (ohmyzsh#7068) Update golang.plugin.zsh (ohmyzsh#6750) Update brew.plugin.zsh (ohmyzsh#6947) Add aliases for kubectl nodes (ohmyzsh#7093) Clarify random theme setting (ohmyzsh#7090) [plugins/git] Updated git clone alias (ohmyzsh#6893) Updating 'sbcl' to 'sbcln' (ohmyzsh#7095) git: add the `git show` alias `gsh` (ohmyzsh#5591) nyan: deprecate plugin with removal notice github: fix new_gh to force-add .gitignore (ohmyzsh#7086) trapd00r: clean up the script ...
- Loading branch information
Showing
205 changed files
with
3,937 additions
and
1,674 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
# Put your custom themes in this folder. | ||
# Example: | ||
|
||
PROMPT="%{$fg[red]%}%n%{$reset_color%}@%{$fg[blue]%}%m %{$fg[yellow]%}%~ %{$reset_color%}%% " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
# Find where asdf should be installed. | ||
# Find where asdf should be installed | ||
ASDF_DIR="${ASDF_DIR:-$HOME/.asdf}" | ||
|
||
# Load asdf, if found. | ||
if [ -f $ASDF_DIR/asdf.sh ]; then | ||
. $ASDF_DIR/asdf.sh | ||
# If not found, check for Homebrew package | ||
if [[ ! -d $ASDF_DIR ]] && (( $+commands[brew] )); then | ||
ASDF_DIR="$(brew --prefix asdf)" | ||
fi | ||
|
||
# Load asdf completions, if found. | ||
if [ -f $ASDF_DIR/completions/asdf.bash ]; then | ||
. $ASDF_DIR/completions/asdf.bash | ||
# Load command | ||
if [[ -f "$ASDF_DIR/asdf.sh" ]]; then | ||
. "$ASDF_DIR/asdf.sh" | ||
|
||
# Load completions | ||
if [[ -f "$ASDF_DIR/completions/asdf.bash" ]]; then | ||
. "$ASDF_DIR/completions/asdf.bash" | ||
fi | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.