-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathquickstart
More file actions
executable file
·41 lines (32 loc) · 937 Bytes
/
quickstart
File metadata and controls
executable file
·41 lines (32 loc) · 937 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
#!/bin/bash
rm -f ~/.vim
rm -f ~/.vimrc
rm -f ~/.gvimrc
rm -f ~/.bashrc
rm -f ~/.zshrc
rm -f ~/.screenrc
#Create symlinks
ln -s ~/dotfiles/dotvim ~/.vim
ln -s ~/dotfiles/gitconfig ~/.gitconfig
ln -s ~/dotfiles/vimrc ~/.vimrc
ln -s ~/dotfiles/gvimrc ~/.gvimrc
# ln -s ~/dotfiles/bashrc ~/.bashrc # not working correctly, using zsh
ln -s ~/dotfiles/zshrc ~/.zshrc
ln -s ~/dotfiles/screenrc ~/.screenrc
ln -s ~/dotfiles/bin ~/bin
~/dotfiles/bin/vcprompt-install
#Load submodules
cd ~/dotfiles
git submodule init
git submodule update
#Create tmp folder
mkdir -p ~/tmp/vim_bak
#Install pep8 and pylint for syntax/convetion checks and nose for unit testing
sudo apt-get install -y python-pip
sudo pip install pep8 pylint pyflakes nose flake8
#nodejs
sudo apt-get update
sudo apt-get install -y python-software-properties python g++ make
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install -y nodejs