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.
[sorin-ionescu#23] Rename plugins to modules
- Loading branch information
1 parent
a75bbff
commit a734088
Showing
73 changed files
with
159 additions
and
159 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
*.zwc | ||
*.zwc.old | ||
plugins/*/cache.zsh | ||
modules/*/cache.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
[submodule "completions"] | ||
path = completions | ||
url = https://github.com/zsh-users/zsh-completions.git | ||
[submodule "plugins/history-substring-search/external"] | ||
path = plugins/history-substring-search/external | ||
[submodule "modules/history-substring-search/external"] | ||
path = modules/history-substring-search/external | ||
url = https://github.com/zsh-users/zsh-history-substring-search.git | ||
[submodule "plugins/syntax-highlighting/external"] | ||
path = plugins/syntax-highlighting/external | ||
[submodule "modules/syntax-highlighting/external"] | ||
path = modules/syntax-highlighting/external | ||
url = https://github.com/zsh-users/zsh-syntax-highlighting.git |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
Submodule completions
added at
b877df
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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,7 +5,7 @@ | |
# Sorin Ionescu <[email protected]> | ||
# | ||
|
||
# Source plugin files. | ||
# Source module files. | ||
source "${0:h}/alias.zsh" | ||
source "${0:h}/hub.zsh" | ||
source "${0:h}/style.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# | ||
# Defines Git information display styles. | ||
# | ||
# Authors: | ||
# Sorin Ionescu <[email protected]> | ||
# | ||
|
||
# %s - Special action name (am, merge, rebase). | ||
zstyle ':omz:module:git:prompt' action 'action:%s' | ||
|
||
# %a - Indicator to notify of added files. | ||
zstyle ':omz:module:git:prompt' added 'added:%a' | ||
|
||
# %A - Indicator to notify of ahead branch. | ||
zstyle ':omz:module:git:prompt' ahead 'ahead:%A' | ||
|
||
# %B - Indicator to notify of behind branch. | ||
zstyle ':omz:module:git:prompt' behind 'behind:%B' | ||
|
||
# %b - Branch name. | ||
zstyle ':omz:module:git:prompt' branch 'branch:%b' | ||
|
||
# %c - SHA-1 hash. | ||
zstyle ':omz:module:git:prompt' commit 'commit:%c' | ||
|
||
# %d - Indicator to notify of deleted files. | ||
zstyle ':omz:module:git:prompt' deleted 'deleted:%d' | ||
|
||
# %D - Indicator to notify of dirty files. | ||
zstyle ':omz:module:git:prompt' dirty 'dirty:%D' | ||
|
||
# %m - Indicator to notify of modified files. | ||
zstyle ':omz:module:git:prompt' modified 'modified:%m' | ||
|
||
# %p - HEAD position in relation to the nearest branch, remote, tag. | ||
zstyle ':omz:module:git:prompt' position 'position:%p' | ||
|
||
# %R - Remote name. | ||
zstyle ':omz:module:git:prompt' remote 'remote:%R' | ||
|
||
# %r - Indicator to notify of renamed files. | ||
zstyle ':omz:module:git:prompt' renamed 'renamed:%r' | ||
|
||
# %S - Indicator to notify of stashed files. | ||
zstyle ':omz:module:git:prompt' stashed 'stashed:%S' | ||
|
||
# %U - Indicator to notify of unmerged files. | ||
zstyle ':omz:module:git:prompt' unmerged 'unmerged:%U' | ||
|
||
# %u - Indicator to notify of untracked files. | ||
zstyle ':omz:module:git:prompt' untracked 'untracked:%u' | ||
|
||
# Left prompt. | ||
zstyle ':omz:module:git:prompt' prompt ' git:(%b %D)' | ||
|
||
# Right prompt. | ||
zstyle ':omz:module:git:prompt' rprompt '' | ||
|
||
# Ignore submodule. | ||
zstyle ':omz:module:git:prompt:ignore' submodule 'no' | ||
|
||
# Ignore submodule when it is 'dirty', 'untracked', 'all', or 'none'. | ||
zstyle ':omz:module:git:prompt:ignore:submodule' when 'all' | ||
|
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
File renamed without changes.
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.