added zunit
This commit is contained in:
parent
139ec8e637
commit
32d462d77e
4 changed files with 16 additions and 4 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -16,3 +16,6 @@
|
||||||
[submodule "lib/gitignore"]
|
[submodule "lib/gitignore"]
|
||||||
path = lib/gitignore
|
path = lib/gitignore
|
||||||
url = https://github.com/github/gitignore
|
url = https://github.com/github/gitignore
|
||||||
|
[submodule "lib/zunit"]
|
||||||
|
path = lib/zunit
|
||||||
|
url = https://github.com/zunit-zsh/zunit
|
||||||
|
|
|
@ -5,7 +5,7 @@ export DOTF_CONF="${DOTFILES}/config" # Config Folder
|
||||||
export ZSHRCD="${DOTF_CONF}/zsh/zshrc.d" # ZSHRC.D Folder
|
export ZSHRCD="${DOTF_CONF}/zsh/zshrc.d" # ZSHRC.D Folder
|
||||||
|
|
||||||
# Export Path
|
# Export Path
|
||||||
export PATH="${HOME}/dotfiles/bin:/opt/android-sdk/build-tools/26.0.0/:${HOME}/.fzf/bin:${PATH}"
|
export PATH="${HOME}/dotfiles/bin:/opt/android-sdk/build-tools/26.0.0/:/home/eeleater/.gem/ruby/2.4.0/bin:${HOME}/.fzf/bin:${PATH}"
|
||||||
|
|
||||||
# Export Editor
|
# Export Editor
|
||||||
export EDITOR='nano'
|
export EDITOR='nano'
|
||||||
|
|
14
install
14
install
|
@ -2,7 +2,15 @@
|
||||||
set -e
|
set -e
|
||||||
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||||
|
|
||||||
cd "${BASEDIR}"
|
cd ${BASEDIR}
|
||||||
git submodule update --init --recursive "${DOTBOT_DIR}"
|
git submodule update --init --recursive
|
||||||
|
|
||||||
"${BASEDIR}/lib/dotbot/bin/dotbot" -d "${BASEDIR}" -c config/dotbot/dotbot.yaml "${@}"
|
|
||||||
|
echo "Installing Dotbot and Linking Files"
|
||||||
|
${BASEDIR}/lib/dotbot/bin/dotbot -d ${BASEDIR} -c config/dotbot/dotbot.yaml ${@}
|
||||||
|
|
||||||
|
echo "Installing ZUnit"
|
||||||
|
cd ${BASEDIR}/lib/zunit
|
||||||
|
./build.zsh
|
||||||
|
cp -f zunit ${BASEDIR}/bin
|
||||||
|
cp -f zunit.zsh-completion ${BASEDIR}/lib/local/_zunit
|
||||||
|
|
1
lib/zunit
Submodule
1
lib/zunit
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 99ef8bc07afed803b461443e0ca7663634c2bb55
|
Loading…
Add table
Reference in a new issue