removed windows and linux split subdir
This commit is contained in:
parent
83dda10fa8
commit
065b982734
280 changed files with 9053 additions and 426 deletions
2
.antidote/tests/tmp_home/.zsh/custom/lib/lib1.zsh
Normal file
2
.antidote/tests/tmp_home/.zsh/custom/lib/lib1.zsh
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
echo "sourcing custom lib1.zsh..."
|
||||
libs=($libs custom:lib1)
|
||||
2
.antidote/tests/tmp_home/.zsh/custom/lib/lib2.zsh
Normal file
2
.antidote/tests/tmp_home/.zsh/custom/lib/lib2.zsh
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
echo "sourcing custom lib2.zsh..."
|
||||
libs=($libs custom:lib2)
|
||||
|
|
@ -0,0 +1,187 @@
|
|||
() {
|
||||
setopt interactivecomments
|
||||
typeset -ga grizwold_zopts=(
|
||||
noaliases
|
||||
aliasfuncdef
|
||||
allexport
|
||||
noalwayslastprompt
|
||||
alwaystoend
|
||||
appendcreate
|
||||
noappendhistory
|
||||
autocd
|
||||
autocontinue
|
||||
noautolist
|
||||
noautomenu
|
||||
autonamedirs
|
||||
noautoparamkeys
|
||||
noautoparamslash
|
||||
autopushd
|
||||
noautoremoveslash
|
||||
autoresume
|
||||
nobadpattern
|
||||
nobanghist
|
||||
nobareglobqual
|
||||
bashautolist
|
||||
bashrematch
|
||||
nobeep
|
||||
nobgnice
|
||||
braceccl
|
||||
bsdecho
|
||||
nocaseglob
|
||||
nocasematch
|
||||
cbases
|
||||
cdablevars
|
||||
cdsilent
|
||||
chasedots
|
||||
chaselinks
|
||||
nocheckjobs
|
||||
nocheckrunningjobs
|
||||
# noclobber
|
||||
combiningchars
|
||||
completealiases
|
||||
completeinword
|
||||
continueonerror
|
||||
correct
|
||||
correctall
|
||||
cprecedences
|
||||
cshjunkiehistory
|
||||
cshjunkieloops
|
||||
cshjunkiequotes
|
||||
cshnullcmd
|
||||
cshnullglob
|
||||
nodebugbeforecmd
|
||||
dvorak
|
||||
emacs
|
||||
noequals
|
||||
# errexit
|
||||
# errreturn
|
||||
noevallineno
|
||||
# noexec
|
||||
extendedglob
|
||||
extendedhistory
|
||||
noflowcontrol
|
||||
# forcefloat
|
||||
nofunctionargzero
|
||||
noglob
|
||||
noglobalexport
|
||||
# noglobalrcs
|
||||
globassign
|
||||
globcomplete
|
||||
globdots
|
||||
globstarshort
|
||||
globsubst
|
||||
nohashcmds
|
||||
nohashdirs
|
||||
hashexecutablesonly
|
||||
nohashlistall
|
||||
histallowclobber
|
||||
nohistbeep
|
||||
histexpiredupsfirst
|
||||
histfcntllock
|
||||
histfindnodups
|
||||
histignorealldups
|
||||
histignoredups
|
||||
histignorespace
|
||||
histlexwords
|
||||
histnofunctions
|
||||
histnostore
|
||||
histreduceblanks
|
||||
nohistsavebycopy
|
||||
histsavenodups
|
||||
histsubstpattern
|
||||
histverify
|
||||
nohup
|
||||
ignorebraces
|
||||
ignoreclosebraces
|
||||
ignoreeof
|
||||
incappendhistory
|
||||
incappendhistorytime
|
||||
# interactive
|
||||
interactivecomments
|
||||
# ksharrays
|
||||
kshautoload
|
||||
kshglob
|
||||
# kshoptionprint
|
||||
kshtypeset
|
||||
kshzerosubscript
|
||||
nolistambiguous
|
||||
nolistbeep
|
||||
listpacked
|
||||
listrowsfirst
|
||||
nolisttypes
|
||||
localloops
|
||||
# localoptions
|
||||
localpatterns
|
||||
localtraps
|
||||
# login
|
||||
longlistjobs
|
||||
magicequalsubst
|
||||
mailwarning
|
||||
markdirs
|
||||
menucomplete
|
||||
# monitor
|
||||
nomultibyte
|
||||
nomultifuncdef
|
||||
nomultios
|
||||
nonomatch
|
||||
nonotify
|
||||
nullglob
|
||||
numericglobsort
|
||||
octalzeroes
|
||||
overstrike
|
||||
pathdirs
|
||||
pathscript
|
||||
pipefail
|
||||
posixaliases
|
||||
posixargzero
|
||||
posixbuiltins
|
||||
posixcd
|
||||
posixidentifiers
|
||||
posixjobs
|
||||
# posixstrings
|
||||
posixtraps
|
||||
printeightbit
|
||||
printexitvalue
|
||||
# privileged
|
||||
promptbang
|
||||
nopromptcr
|
||||
# nopromptpercent
|
||||
nopromptsp
|
||||
promptsubst
|
||||
pushdignoredups
|
||||
pushdminus
|
||||
pushdsilent
|
||||
pushdtohome
|
||||
rcexpandparam
|
||||
rcquotes
|
||||
# norcs
|
||||
recexact
|
||||
rematchpcre
|
||||
# restricted
|
||||
rmstarsilent
|
||||
rmstarwait
|
||||
sharehistory
|
||||
shfileexpansion
|
||||
shglob
|
||||
# shinstdin
|
||||
shnullcmd
|
||||
shoptionletters
|
||||
noshortloops
|
||||
shwordsplit
|
||||
# singlecommand
|
||||
singlelinezle
|
||||
# sourcetrace
|
||||
sunkeyboardhack
|
||||
transientrprompt
|
||||
trapsasync
|
||||
typesetsilent
|
||||
nounset
|
||||
# verbose
|
||||
# vi
|
||||
warncreateglobal
|
||||
warnnestedvar
|
||||
# xtrace
|
||||
# zle
|
||||
)
|
||||
setopt $grizwold_zopts
|
||||
}
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# fake foo/bar
|
||||
echo "sourcing myplugin..."
|
||||
plugins+=(custom:myplugin)
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
echo "sourcing mytheme..."
|
||||
plugins+=(custom:mytheme)
|
||||
Loading…
Add table
Add a link
Reference in a new issue