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