-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.conf
More file actions
executable file
·57 lines (48 loc) · 834 Bytes
/
setup.conf
File metadata and controls
executable file
·57 lines (48 loc) · 834 Bytes
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
#!/bin/bash
declare dotfilesDirectory="$HOME/dotfiles"
declare -a DIRECTORIES=(
)
declare -a FILES_TO_SYMLINK=(
".gitconfig"
".gitignore"
".vim"
".vimrc"
".zshrc"
)
declare -a MACOS_FILES_COPY_TO_HOME=(
"Library/Fonts"
)
declare -a COMMANDS=(
)
declare -a UBUNTU_COMMANDS=(
"locale-gen"
"curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash -"
)
declare -a APT_GET_PACKAGES=(
"build-essential"
"cmake"
"python-dev"
"python3-dev"
"python-pip"
"debian-archive-keyring"
"git"
"curl"
"tmux"
"vim"
"zsh"
"nodejs"
)
declare -a PIP_PACKAGES=(
"--upgrade pip"
"powerline-status"
#"MySQL-python"
# "tornado"
# "torndb"
# "pycrypto"
# "mock"
# "pyroute2"
# "web.py"
)
declare -a NPM_PACKAGES=(
# "jshint"
)