-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathinstaller.sh
More file actions
51 lines (38 loc) · 1.54 KB
/
installer.sh
File metadata and controls
51 lines (38 loc) · 1.54 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
#!/bin/bash
echo " .___ __ _____.__.__ "
echo " __| _/_____/ |__/ ____\__| | ____ ______ "
echo " / __ |/ _ \ __\ __\| | | _/ __ \ / ___/ "
echo " / /_/ ( <_> ) | | | | | |_\ ___/ \___ \ "
echo " \____ |\____/|__| |__| |__|____/\___ >____ > "
echo " \/ \/ \/ "
echo " "
echo " This repository contains personal dotfiles of Ionică Bizău."
echo " - - - - - - - - - - "
echo ""
echo "Installing git ..."
sudo apt-get install git -y
echo "Installing curl ..."
sudo apt-get install curl -y
echo "Clonning the repository ..."
git clone https://github.com/IonicaBizau/dotfiles
echo "Entering in the downloaded folder."
cd dotfiles
echo "Copying Johnny's apps ..."
sudo cp -r johnnysapps /
echo "Installing VIM ..."
sudo apt-get install -y vim
echo "Copying .vimrc ..."
cp vim/.vimrc ~/
echo "Copying user/.bashrc ..."
cp user/.bashrc ~/
echo "Copying user/.gitconfig ..."
cp user/.gitconfig ~/
echo "Copying tmux/.tmux.conf ..."
cp tmux/.tmux.conf ~/
echo "Installing Vundle"
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
echo "Installing NVM"
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash
echo "Finished. Cleaning up ..."
cd ..
rm -rf dotfiles