-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinstall.sh
More file actions
36 lines (28 loc) · 1.07 KB
/
install.sh
File metadata and controls
36 lines (28 loc) · 1.07 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
#!/bin/bash
cd ~; mv .vimrc .vimrc.bkp; mv .tmux.conf .tmux.conf.bkp;
echo " ";
echo "\033[1;34mremoved before configurations. Files renamed to .vimrc.bkp and .tmux.conf.bkp\033[0m";
echo " ";
echo "\033[1;34mGetting .vimrc file ...\033[0m";
echo " ";
curl https://raw.githubusercontent.com/ottony/dotfiles/master/vimrc > ~/.vimrc;
echo " ";
echo "\033[1;34mGetting .tmux.conf file ...\033[0m";
echo " ";
curl https://raw.githubusercontent.com/ottony/dotfiles/master/tmux.conf > ~/.tmux.conf;
echo " ";
echo "\033[1;34mGetting .gitconfig file ...\033[0m";
echo " ";
curl https://raw.githubusercontent.com/ottony/dotfiles/master/gitconfig >> ~/.gitconfig;
echo " ";
echo "\033[1;36mCloning vundle https://github.com/gmarik/vundle.git into ~/.vim/bundle/vundle ...\033[0m";
echo " ";
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle;
echo " ";
echo "\033[1;33mInstalling plugins ...\033[0m";
vim +BundleInstall +qall;
echo " ";
echo "\033[1;33mUpdating plugins ...\033[0m";
vim +BundleUpdate +qall;
echo " ";
echo "\033[1;32mEverything is awesome...\033[0m";