Skip to content

Commit

Permalink
Install and load more dotfiles.
Browse files Browse the repository at this point in the history
  • Loading branch information
cretueusebiu committed Feb 14, 2016
1 parent 2092463 commit 833ee1e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bash_profile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Load dotfiles
for file in ~/.{path,bash_prompt,exports,aliases,extra}; do
for file in ~/.{path,bash_prompt,exports,aliases,extra,minttyrc,inputrc,vimrc}; do
[ -r "$file" ] && [ -f "$file" ] && source "$file";
done;
unset file;
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# My dotfiles

> My dotfiles for Windows with [Git Bash](https://git-scm.com/downloads) (Mintty).
## Installation

`git clone git@github.com:cretueusebiu/dotfiles.git ~/dotfiles`
`cd ~/dotfiles`
`./install.sh`
- `git clone git@github.com:cretueusebiu/dotfiles.git ~/dotfiles`
- `cd ~/dotfiles`
- `./install.sh`
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dir=~/dotfiles
files="aliases bash_profile bashrc bash_prompt exports gitconfig"
files="aliases bash_profile bashrc bash_prompt exports gitconfig minttyrc vimrc inputrc"

for file in $files; do
echo "Creating symlink to $file in home directory."
Expand Down

0 comments on commit 833ee1e

Please sign in to comment.