Mohamed Saad IBN SEDDIK's Linux .files
Dotfiles to quickly configure your system.
In a terminal, type:
bash -c "$(wget -qO - https://raw.github.com/msis/dotfiles/master/install.sh)"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.
[user]
email = ms.ibnseddik@gmail.com
name = Mohamed Saad IBN SEDDIKIf 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
#!/bin/bash
PATH="/usr/local/bin:$PATH"
export PATH
alias g="git"This dotfiles are inspired from :
See the LICENSE file.