-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathINSTALL
More file actions
executable file
·72 lines (58 loc) · 1.56 KB
/
INSTALL
File metadata and controls
executable file
·72 lines (58 loc) · 1.56 KB
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
66
67
68
69
70
71
72
## Install ##
# Linux
sudo apt-get install ccze colordiff pv
# MAC
export PATH="$(brew --prefix coreutils)/libexec/gnubin:/usr/local/bin:$PATH"
if [ -f $(brew --prefix)/etc/bash_completion ]; then
. $(brew --prefix)/etc/bash_completion
fi
brew install pv
brew install colordiff
brew install coreutils
brew install binutils
brew install diffutils
brew install ed --default-names
brew install findutils --default-names
brew install gawk
brew install gnu-indent --default-names
brew install gnu-sed --default-names
brew install gnu-tar --default-names
brew install gnu-which --default-names
brew install gnutls --default-names
brew install grep --default-names
brew install gzip
brew install screen
brew install watch
brew install wdiff --with-gettext
brew install wget
brew install bash
brew install emacs
#brew install gdb # gdb requires further actions to make it work. See `brew info gdb`.
brew install gpatch
brew install m4
brew install make
brew install nano
brew install file-formula
brew install git
brew install less
brew install openssh
#brew install perl518 # must run "brew tap homebrew/versions" first!
brew install python
brew install rsync
brew install svn
brew install unzip
brew install vim macvim
brew install zsh
brew install bash-completion
chsh -s /usr/local/bin/bash
source ~/scripts/symfony2-autocomplete/symfony2-autocomplete.bash
# Common
sudo easy_install Pygments
ln -s scripts/colorizrc .colorizrc
# include in .gitconfig
[include]
path = scripts/gitconfig
# Enable .aliases in bash_profile
if [ -f ~/scripts/aliases ]; then
. ~/scripts/aliases
fi