12 lines
164 B
Bash
12 lines
164 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
DIR=$(dirname "$(readlink -f "$0")")
|
||
|
. "$DIR/../env.sh"
|
||
|
|
||
|
. "$DIR/mirrors.sh"
|
||
|
. "$DIR/fish.sh"
|
||
|
. "$DIR/vim.sh"
|
||
|
. "$DIR/ranger.sh"
|
||
|
. "$DIR/tmux.sh"
|