Skip to content
This repository has been archived by the owner on Apr 29, 2020. It is now read-only.

itsjwala/dotfiles

Repository files navigation

dotfiles

sublime setup

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

vscode setup

  • copy all file of vscode folder of the repo into ~/.config/Code/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)"
  • now copy .zshrc file from repo to ~/.zshrc

npm global package in user directory

1. Create a directory for global packages
mkdir "${HOME}/.npm-packages"
2. Tell npm where to store globally installed packages
npm config set prefix "${HOME}/.npm-packages"

rest of the setup is in .zshrc so copy that too

virtual environment setup for python

Using pipenv from now.

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