Skip to content

Commit

Permalink
Update dotfiles.
Browse files Browse the repository at this point in the history
  • Loading branch information
antleblanc committed Oct 28, 2016
1 parent d9d121d commit 83f311a
Show file tree
Hide file tree
Showing 26 changed files with 950 additions and 303 deletions.
63 changes: 0 additions & 63 deletions .aliases

This file was deleted.

12 changes: 0 additions & 12 deletions .bash_profile

This file was deleted.

120 changes: 0 additions & 120 deletions .bash_prompt

This file was deleted.

2 changes: 0 additions & 2 deletions .bashrc

This file was deleted.

13 changes: 0 additions & 13 deletions .editorconfig

This file was deleted.

24 changes: 0 additions & 24 deletions .exports

This file was deleted.

19 changes: 0 additions & 19 deletions .functions

This file was deleted.

1 change: 0 additions & 1 deletion .gitattributes

This file was deleted.

42 changes: 0 additions & 42 deletions .gitconfig

This file was deleted.

4 changes: 0 additions & 4 deletions .hushlogin

This file was deleted.

16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

I maintain this repo as *my* dotfiles.

## Installation

```sh
$ cd ~/Code
$ git clone [email protected]:antleblanc/dotfiles.git
```

You can now create symbolic links for each of those files.

```sh
$ cd ~
$ ln -s ~/Code/dotfiles/bashrc .bashrc
$ ln -s ~/Code/dotfiles/bash_profile .bash_profile
$ …
```

## Resources

- [Mathias Bynens](https://github.com/mathiasbynens) and his [dotfiles repository](https://github.com/mathiasbynens/dotfiles).
Expand Down
24 changes: 24 additions & 0 deletions bash.local
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/bin/bash

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

# Set local aliases

alias s="cd ~/Sites"
alias c="cd ~/Code"
alias cask="brew cask"

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

# Set PATH additions

PATH="$HOME/bin:$PATH"

export PATH

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

# Node version manager.

export NVM_DIR="/Users/antleblanc/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
Loading

0 comments on commit 83f311a

Please sign in to comment.