-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
install.sh
executable file
·65 lines (43 loc) · 1.39 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/bin/zsh
set +x
export dotfiles_dir=$(dirname "$(realpath "$0")")
# load config
export support_dir="$dotfiles_dir/support"
# Load functions
source "$support_dir/functions.sh"
# Load ascii art
ascii_art
# Check and prompt for necessary dependencies
source "$support_dir/precheck.sh" && cd $dotfiles_dir
title 'XCODE'
source "$support_dir/xcode.sh" && cd $dotfiles_dir
title 'DEPENDENCIES'
source "$support_dir/dependencies.sh" && cd $dotfiles_dir
title 'SYM LINKS'
source "$support_dir/sym_links.sh" && cd $dotfiles_dir
title 'HOMEBREW'
source "$support_dir/brew.sh" && cd $dotfiles_dir
title 'GIT'
source "$support_dir/git.sh" && cd $dotfiles_dir
title 'COMPOSER'
source "$support_dir/composer.sh" && cd $dotfiles_dir
title 'VALET'
source "$support_dir/valet.sh" && cd $dotfiles_dir
title 'GIT CLONE'
source "$support_dir/git_clone.sh" && cd $dotfiles_dir
title 'NPM'
source "$support_dir/node.sh" && cd $dotfiles_dir
title 'PYENV'
source "$support_dir/python.sh" && cd $dotfiles_dir
title 'JENV'
source "$support_dir/java.sh" && cd $dotfiles_dir
title 'Ruby'
source "$support_dir/ruby.sh" && cd $dotfiles_dir
title 'VIM'
source "$support_dir/vim.sh" && cd $dotfiles_dir
title 'NEOVIM'
source "$support_dir/neovim.sh" && cd $dotfiles_dir
title 'MACOS SETTINGS'
source "$support_dir/mac_settings.sh" && cd $dotfiles_dir
title 'MANUAL STEPS'
source "$support_dir/manual_steps.sh" && cd $dotfiles_dir