jpavon / dotfiles

Dotfiles.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dotfiles

Note: You need to have oh-my-zsh installed.

Usage

Clone this repo:

git clone https://github.com/jpavon/dotfiles.git ~/.dotfiles

Make dotfiles executable:

cd ~/.dotfiles && chmod +x bin/dotfiles

Sync files:

./bin/dotfiles

Once is synced you can use this command to update the dotfiles from ~/.dotfiles to ~/:

dotfiles

.extra file

Add an .extra file to ~/ with your git credentials.

# Git credentials

GIT_AUTHOR_NAME="Your name"
GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME"
git config --global user.name "$GIT_AUTHOR_NAME"
GIT_AUTHOR_EMAIL="Your email"
GIT_COMMITTER_EMAIL="$GIT_AUTHOR_EMAIL"
git config --global user.email "$GIT_AUTHOR_EMAIL"

Credits to:

About

Dotfiles.


Languages

Language:Shell 100.0%