forked from sorin-ionescu/prezto
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit '5b03d7fa32cae51cee7903d3338f87c2d7d89657'
* commit '5b03d7fa32cae51cee7903d3338f87c2d7d89657': prompt: fix usage of zsh-async in sorin prompt (sorin-ionescu#1810) Fix missing dependency on helper module for helpers added in sorin-ionescu#1793 (sorin-ionescu#1811) prompt: update powerlevel10k submodule to v1.5.0 feat(helper): add os-type helper functions Update syntax-highlighting module prompt: update powerlevel10k submodule to v1.4.0
- Loading branch information
Showing
11 changed files
with
56 additions
and
11 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
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 |
---|---|---|
|
@@ -6,8 +6,11 @@ | |
# Sorin Ionescu <[email protected]> | ||
# | ||
|
||
# Load dependencies. | ||
pmodload 'helper' | ||
|
||
# Return if requirements are not found. | ||
if [[ "$OSTYPE" != darwin* ]]; then | ||
if ! is-darwin; then | ||
return 1 | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,11 @@ | |
# Sorin Ionescu <[email protected]> | ||
# | ||
|
||
# Load dependencies. | ||
pmodload 'helper' | ||
|
||
# Return if requirements are not found. | ||
if [[ "$OSTYPE" != darwin* ]]; then | ||
if ! is-darwin; then | ||
return 1 | ||
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
Submodule powerlevel10k
updated
13 files
+153 −10 | README.md | |
+55 −68 | config/p10k-classic.zsh | |
+56 −70 | config/p10k-lean-8colors.zsh | |
+56 −70 | config/p10k-lean.zsh | |
+3 −2 | config/p10k-pure.zsh | |
+58 −68 | config/p10k-rainbow.zsh | |
+3 −2 | config/p10k-robbyrussell.zsh | |
+9 −8 | gitstatus/gitstatus.plugin.zsh | |
+19 −3 | internal/icons.zsh | |
+19 −0 | internal/notes.txt | |
+212 −74 | internal/p10k.zsh | |
+1 −1 | internal/parser.zsh | |
+89 −75 | internal/wizard.zsh |
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 |
---|---|---|
|
@@ -7,6 +7,9 @@ | |
# Patrick Bos <[email protected]> | ||
# | ||
|
||
# Load dependencies | ||
pmodload 'helper' | ||
|
||
# Load manually installed pyenv into the path | ||
if [[ -s "${PYENV_ROOT:=$HOME/.pyenv}/bin/pyenv" ]]; then | ||
path=("${PYENV_ROOT}/bin" $path) | ||
|
@@ -22,7 +25,7 @@ elif (( $+commands[pyenv] )); then | |
else | ||
if [[ -n "$PYTHONUSERBASE" ]]; then | ||
path=($PYTHONUSERBASE/bin $path) | ||
elif [[ "$OSTYPE" == darwin* ]]; then | ||
elif is-darwin; then | ||
path=($HOME/Library/Python/*/bin(N) $path) | ||
else | ||
# This is subject to change. | ||
|
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