Skip to content

Latest commit

 

History

History
53 lines (46 loc) · 1.18 KB

README.md

File metadata and controls

53 lines (46 loc) · 1.18 KB

dotfiles

sublime setup

  • copy all file of sublime folder of the repo into ~/.config/sublime-text-3/Packages/User

zsh setup

  • 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

virtual environment setup for python

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 

git setup

  • install git
  • edit ~/.gitconfig file with .gitconfig from repo

Note

Added a python script which will grab all the sublime config files , .zshrc and .gitconfig files