Skip to content

The dotfiles are how you personalize your system. These are mine for macOS and Ubuntu

Notifications You must be signed in to change notification settings

tankibaj/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Your dotfiles are how you personalize your system. These are mine.

Every time I set up a new macOS and Ubuntu machine, I manually copied my .bashrc file to each machine. It was a real mess. So, I decided to execute a single command on a new machine to pull down all of my dotfiles and install all the tools I commonly use. That’s why I have created this dotfiles repository. It helps me to automate the setup process and maintain aliases.

Prerequisite

macOS

The easiest way to install xCode is the command line. Type xcode-select --install on terminal.

Install dotfiles

bash -c "$(curl -fsSL https://raw.githubusercontent.com/tankibaj/dotfiles/main/install)"

Enable python virtual environment for the tools [Optional]

python3 -m venv $HOME/.dotfiles.venv
source $HOME/.dotfiles.venv/bin/activate
pip install -r $HOME/.dotfiles/bin/requirements.txt