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 remote-tracking branch 'upstream/master'
* upstream/master: (35 commits) remove mutually exclusive option Update syntax-highlighting submodule Remove old prompt tempfile and pid variable Updating submodules to lastest tags/master commits Fix typo: gupl --> gulp (sorin-ionescu#1668) python: Use brace expansion for pip compctl match Remove duplicated information from git module README (sorin-ionescu#1657) python: Expand compctl matches for pip variants command-not-found: Minor reformatting homebrew: Load 'HOMEBREW_' prefixed variables only homebrew: Simplify array assignment archive: Enhance 'archive' helper to support multi file archive git: add documentation for new aliases Aliases to digital sign/verify commits and tags (sorin-ionescu#651) syntax-highlighting: Further clarify relative module ordering rsync: Update link to Bombich rsync page again node: Make nvm lookup mechanism more efficient in homebrewed environment python: Fix pip compctl file match pattern command-not-found: Support custom Homebrew tap on MacOS node: Cache completion for additional helpers ...
- Loading branch information
Showing
28 changed files
with
234 additions
and
107 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 |
---|---|---|
@@ -1,8 +1,3 @@ | ||
Autosuggestions | ||
--------------- | ||
|
||
Integrates zsh-autosuggestions into Prezto. | ||
|
||
Autosuggestions | ||
=============== | ||
|
||
|
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 |
---|---|---|
|
@@ -6,21 +6,12 @@ | |
# Sorin Ionescu <[email protected]> | ||
# | ||
|
||
# | ||
# Variables | ||
# | ||
|
||
HISTFILE="${ZDOTDIR:-$HOME}/.zhistory" # The path to the history file. | ||
HISTSIZE=10000 # The maximum number of events to save in the internal history. | ||
SAVEHIST=10000 # The maximum number of events to save in the history file. | ||
|
||
# | ||
# Options | ||
# | ||
|
||
setopt BANG_HIST # Treat the '!' character specially during expansion. | ||
setopt EXTENDED_HISTORY # Write the history file in the ':start:elapsed;command' format. | ||
setopt INC_APPEND_HISTORY # Write to the history file immediately, not when the shell exits. | ||
setopt SHARE_HISTORY # Share history between all sessions. | ||
setopt HIST_EXPIRE_DUPS_FIRST # Expire a duplicate event first when trimming history. | ||
setopt HIST_IGNORE_DUPS # Do not record an event that was just recorded again. | ||
|
@@ -31,6 +22,14 @@ setopt HIST_SAVE_NO_DUPS # Do not write a duplicate event to the history | |
setopt HIST_VERIFY # Do not execute immediately upon history expansion. | ||
setopt HIST_BEEP # Beep when accessing non-existent history. | ||
|
||
# | ||
# Variables | ||
# | ||
|
||
HISTFILE="${ZDOTDIR:-$HOME}/.zhistory" # The path to the history file. | ||
HISTSIZE=10000 # The maximum number of events to save in the internal history. | ||
SAVEHIST=10000 # The maximum number of events to save in the history file. | ||
|
||
# | ||
# Aliases | ||
# | ||
|
Oops, something went wrong.