Skip to content

Gagandeep22/dotfiles

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

my dotfiles used on ubuntu

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 70.4%
  • Python 29.6%