Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 519 Bytes

README.adoc

File metadata and controls

22 lines (15 loc) · 519 Bytes

shell

This repository contains configuration files for the bash and zsh shell, and possibly other programs

Installation

In your linux system, clone the repository inside your .config folder

git clone https://github.com/fekir/dotfiles.git "$HOME/.config/"

Then add following line to your current .bashrc (similar setup is needed for zsh too)

# include main.bashrc if it exists
if [ -f "$HOME/.config/shell/main.bashrc" ]; then
    . "$HOME/.config/shell/main.bashrc"
fi

That’s all folks!