- copy all file of sublime folder of the repo into
~/.config/sublime-text-3/Packages/User
- install zsh
sudo apt install zsh
- set zsh as default shell
chsh -s $(which zsh)
- check if zsh is default shell
echo $SHELL
- install oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"</code>
- now copy .zshrc file from repo to
~/.zshrc
tutorial link
-
install virtualenv wrapper
pip install virtualenvwrapper
-
keep all virtualenvs in same location
mkdir ~/.virtualenvs export WORKON_HOME=~/.virtualenvs
-
edit .zshrc file , add line
. /usr/local/bin/virtualenvwrapper.sh
-
now reload zsh using
source .zshrc
- install git
- edit
~/.gitconfig
file with .gitconfig from repo
Added a python script which will grab all the sublime config files , .zshrc and .gitconfig files