Skip to content

Latest commit

 

History

History
43 lines (35 loc) · 1.43 KB

README.md

File metadata and controls

43 lines (35 loc) · 1.43 KB

Build Status

Dotfiles to quickly configure your system.

Setup

In a terminal, type:

bash -c "$(wget -qO - https://raw.github.com/msis/dotfiles/master/install.sh)"

Personal Settings

Git's ~/.gitconfig.local

To store personal configuration for git, like name and email, or any other setting; you can use the ~/.gitconfig.local file. It is appended to the .gitconfig defined in this project to allow overiding the predefined settings.

Example:

[user]
	email = [email protected]
	name = Mohamed Saad IBN SEDDIK

Bash's ~/.bash.local

If you want to add your own aliases or folders to the PATH etc., you can create and set everything you need in a local file in ~/.bash.local

Example

#!/bin/bash
PATH="/usr/local/bin:$PATH"
export PATH

alias g="git"

Acknowledgments

This dotfiles are inspired from :

License

See the LICENSE file.