mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-12-22 06:58:01 +00:00
Merge upstream/master
This commit is contained in:
commit
7ec4aad48c
10
init.zsh
10
init.zsh
@ -98,18 +98,20 @@ function pmodload {
|
||||
else
|
||||
locations=(${pmodule_dirs:+${^pmodule_dirs}/$pmodule(-/FN)})
|
||||
if (( ${#locations} > 1 )); then
|
||||
print "$0: conflicting module locations: $locations"
|
||||
continue
|
||||
if ! zstyle -t ':prezto:load' pmodule-allow-overrides 'yes'; then
|
||||
print "$0: conflicting module locations: $locations"
|
||||
continue
|
||||
fi
|
||||
elif (( ${#locations} < 1 )); then
|
||||
print "$0: no such module: $pmodule"
|
||||
continue
|
||||
fi
|
||||
|
||||
# Grab the full path to this module
|
||||
pmodule_location=${locations[1]}
|
||||
pmodule_location=${locations[-1]}
|
||||
|
||||
# Add functions to $fpath.
|
||||
fpath=(${pmodule_location}/functions(/FN) $fpath)
|
||||
fpath=(${pmodule_location}/functions(-/FN) $fpath)
|
||||
|
||||
function {
|
||||
local pfunction
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit 733abd4af0f23f217caa2a303fbef66382d19d6f
|
||||
Subproject commit ae315ded4dba10685dbbafbfa2ff3c1aefeb490d
|
@ -38,6 +38,9 @@ setopt INTERACTIVE_COMMENTS # Enable comments in interactive shell.
|
||||
setopt RC_QUOTES # Allow 'Henry''s Garage' instead of 'Henry'\''s Garage'.
|
||||
unsetopt MAIL_WARNING # Don't print a warning message if a mail file has been accessed.
|
||||
|
||||
# Allow mapping Ctrl+S and Ctrl+Q shortcuts
|
||||
[[ -n ${TTY:-} && $+commands[stty] == 1 ]] && stty -ixon <$TTY >$TTY
|
||||
|
||||
#
|
||||
# Jobs
|
||||
#
|
||||
|
2
modules/prompt/external/powerlevel10k
vendored
2
modules/prompt/external/powerlevel10k
vendored
@ -1 +1 @@
|
||||
Subproject commit 345d0644a9c1a242ff131bde915bbe234c3dd745
|
||||
Subproject commit c21961b53c137253020aeffca2b132fdd6bcb116
|
@ -15,7 +15,7 @@
|
||||
} &!
|
||||
|
||||
# Execute code only if STDERR is bound to a TTY.
|
||||
[[ -o INTERACTIVE && -t 2 ]] && {
|
||||
if [[ -o INTERACTIVE && -t 2 ]]; then
|
||||
|
||||
# Print a random, hopefully interesting, adage.
|
||||
if (( $+commands[fortune] )); then
|
||||
@ -23,4 +23,4 @@
|
||||
print
|
||||
fi
|
||||
|
||||
} >&2
|
||||
fi >&2
|
||||
|
@ -18,6 +18,9 @@ zstyle ':prezto:*:*' color 'yes'
|
||||
# Add additional directories to load prezto modules from
|
||||
# zstyle ':prezto:load' pmodule-dirs $HOME/.zprezto-contrib
|
||||
|
||||
# Allow module overrides when pmodule-dirs causes module name collisions
|
||||
# zstyle ':prezto:load' pmodule-allow-overrides 'yes'
|
||||
|
||||
# Set the Zsh modules to load (man zshmodules).
|
||||
# zstyle ':prezto:load' zmodule 'attr' 'stat'
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user