-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d9d121d
commit 83f311a
Showing
26 changed files
with
950 additions
and
303 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.