tariq86 / dotfiles

My .files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tariq86's .dotfiles

These are the dotfiles I use on my development machine(s). They're pretty similar to this repo's upstream (mathiasbynens/dotfiles), with a few minor tweaks and additions:

  • Added VPNc indicator to the bash prompt
  • Minor tweaks to some of the settings to match my personal preferences

Installation

Warning: Please read through these files to make sure you understand what they are all for or what they are doing. Some of the stuff is pretty opinionated, so you may want to fork and make changes. I am not responsible for any issues or inconveniences you may experience as a result of using this repository. Use at your own risk!

Using Git and the bootstrap script

You can clone the repository wherever you want. The bootstrapper script will pull in the latest version and copy the files to your home folder.

git clone https://github.com/tariq86/dotfiles.git && cd dotfiles && source bootstrap.sh

To update, cd into your local dotfiles repository and then:

source bootstrap.sh

Alternatively, to update while avoiding the confirmation prompt:

set -- -f; source bootstrap.sh

Git-free install

To install these dotfiles without Git:

cd; curl -#L https://github.com/tariq86/dotfiles/tarball/master | tar -xzv --strip-components 1 --exclude={README.md,bootstrap.sh,.osx,LICENSE-MIT.txt}

To update later on, just run that command again.

Specify the $PATH

If ~/.path exists, it will be sourced along with the other files, before any feature testing (such as detecting which version of ls is being used) takes place.

Here’s an example ~/.path file that adds /usr/local/bin to the $PATH:

export PATH="/usr/local/bin:$PATH"

Add custom commands without creating a new fork

If ~/.extra exists, it will be sourced along with the other files. You can use this to add a few custom commands without the need to fork this entire repository, or to add commands you don’t want to commit to a public repository (like your git credentials).

You could also use ~/.extra to override settings, functions and aliases from my dotfiles repository. It’s probably better to fork this repository instead, though.

Sensible macOS defaults

When setting up a new Mac, you may want to set some sensible macOS defaults:

./.macos

Install Homebrew formulae

When setting up a new Mac, you may want to install some common Homebrew formulae (after installing Homebrew, of course):

./brew.sh

Some of the functionality of these dotfiles depends on formulae installed by brew.sh. If you don’t plan to run brew.sh, you should look carefully through the script and manually install any particularly important ones. A good example is Bash/Git completion: the dotfiles use a special version from Homebrew.

Feedback

Suggestions/improvements welcome!

Thanks to…

About

My .files


Languages

Language:Shell 55.1%Language:Vim Script 44.9%