23 lines
358 B
Bash
Executable File
23 lines
358 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
source ${DOTFILES}/helpers.sh
|
|
|
|
function main()
|
|
{
|
|
local scriptdir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd)"
|
|
|
|
print_info "Preparing development environment"
|
|
|
|
${scriptdir}/git/setup.sh
|
|
|
|
brewget vim --with-override-system-vi
|
|
caskget docker
|
|
|
|
makedir ${HOME}/code
|
|
|
|
print_ok "Development environment setup"
|
|
|
|
}
|
|
|
|
main "$@"
|