removed windows and linux split subdir
This commit is contained in:
parent
83dda10fa8
commit
065b982734
280 changed files with 9053 additions and 426 deletions
|
|
@ -0,0 +1 @@
|
|||
https://github.com/foo/bar
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
echo "sourcing foo/bar..."
|
||||
plugins=($plugins foo/bar)
|
||||
|
|
@ -0,0 +1 @@
|
|||
https://github.com/foo/baz
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
echo "sourcing foo/baz..."
|
||||
plugins=($plugins foo/baz)
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
#!/bin/zsh
|
||||
echo _baz completion
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
#!/bin/zsh
|
||||
function baz {
|
||||
echo baz function
|
||||
}
|
||||
baz "$@"
|
||||
|
|
@ -0,0 +1 @@
|
|||
git@github.com:foo/qux
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
echo "sourcing foo/qux..."
|
||||
plugins=($plugins foo/qux)
|
||||
|
|
@ -0,0 +1 @@
|
|||
https://github.com/getantidote/zsh-defer
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# fake foo/bar
|
||||
echo "sourcing getantidote/zsh-defer..."
|
||||
plugins=($plugins getantidote/zsh-defer)
|
||||
function zsh-defer {
|
||||
$@
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
https://github.com/ohmy/ohmy
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
echo "sourcing pretty.zsh-theme..."
|
||||
themes=($themes ohmy:pretty)
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
echo "sourcing ugly.zsh-theme..."
|
||||
themes=($themes ohmy:ugly)
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
echo "sourcing ohmy/lib/lib1.zsh..."
|
||||
libs=($libs ohmy:lib1)
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
echo "sourcing ohmy/lib/lib2.zsh..."
|
||||
libs=($libs ohmy:lib2)
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
echo "sourcing ohmy/lib/lib3.zsh..."
|
||||
libs=($libs ohmy:lib2)
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
echo "sourcing oh-my.sh..."
|
||||
plugins=($plugins ohmy/ohmy)
|
||||
|
|
@ -0,0 +1 @@
|
|||
#compdef
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
echo "sourcing docker.plugin.zsh..."
|
||||
plugins+=(ohmy:docker)
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
echo "sourcing extract.plugin.zsh..."
|
||||
plugins+=(ohmy:extract)
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
#!/bin/zsh
|
||||
function macos_func {
|
||||
echo macos_func "$@"
|
||||
}
|
||||
macos_func "$@"
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
echo "sourcing macos.plugin.zsh..."
|
||||
plugins+=(ohmy:macos)
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
echo "sourcing magic-enter.plugin.zsh..."
|
||||
plugins+=(ohmy:magic-enter)
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
echo "sourcing pretty.zsh-theme..."
|
||||
themes=($themes ohmy:pretty)
|
||||
Loading…
Add table
Add a link
Reference in a new issue