forked from holman/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·38 lines (27 loc) · 1.13 KB
/
install.sh
File metadata and controls
executable file
·38 lines (27 loc) · 1.13 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
#!/bin/bash
echo "Installing Homebrew..."
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
echo "Installing LFTP..."
brew install lftp
echo "Installing diff-so-fancy..."
brew install diff-so-fancy
echo "Installing Silver Searcher (ag)..."
brew install ag
echo "Installing npm..."
brew install npm
echo "Symlinking dotfiles..."
ln -s $HOME/.dotfiles/bash/bash_profile.symlink $HOME/.bash_profile
ln -s $HOME/.dotfiles/bash/bashrc.symlink $HOME/.bashrc
echo "Symlinking tmux.conf..."
ln -s $HOME/.dotfiles/tmux/tmux.conf.symlink $HOME/.tmux.conf
echo "Symlinking vim..."
ln -s $HOME/.dotfiles/vim/vimrc.symlink $HOME/.vimrc
ln -s $HOME/.dotfiles/vim/vim.symlink $HOME/.vim
echo "Symlinking git..."
ln -s $HOME/.dotfiles/git/gitconfig.symlink $HOME/.gitconfig
ln -s $HOME/.dotfiles/git/gitignore.symlink $HOME/.gitignore
ln -s $HOME/.dotfiles/git/githelpers.symlink $HOME/.githelpers
echo "Symlinking gemrc..."
ln -s $HOME/.dotfiles/gemrc.symlink $HOME/.gemrc
echo "Symlinking sublime..."
ln -s $HOME/.dotfiles/sublime/user.symlink $HOME/Library/Application\ Support/Sublime\ Text\ 2/Packages/User