mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 14:12:41 +00:00
12 lines
173 B
Bash
Executable File
12 lines
173 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
dir="${PWD}"
|
|
|
|
cd "${dir}/zsh" && ./setup
|
|
cd "${dir}/scripts" && ./setup
|
|
cd "${dir}/vim" && ./setup
|
|
cd "${dir}/git" && ./setup
|
|
cd "${dir}/tmux" && ./setup
|