aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Williams <tgwil@tgwil.net>2024-10-10 01:17:56 -0400
committerTristan Williams <tgwil@tgwil.net>2024-10-10 01:17:56 -0400
commitb0da6782e3b22bb9d667b76718b87eb3d7e46bb6 (patch)
tree116e5bc01e7d72bb01b833a5d60850b07e2e83b4
parentAdd support for .bashrc.personal (diff)
downloaddotfiles.core-b0da6782e3b22bb9d667b76718b87eb3d7e46bb6.tar.gz
dotfiles.core-b0da6782e3b22bb9d667b76718b87eb3d7e46bb6.tar.bz2
dotfiles.core-b0da6782e3b22bb9d667b76718b87eb3d7e46bb6.zip
Add installation instructions to README.md
-rw-r--r--README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/README.md b/README.md
index 365e1b6..c9e1f05 100644
--- a/README.md
+++ b/README.md
@@ -4,3 +4,21 @@ These are my core dotfiles. They are used on every account on every machine, inc
4 4
5My other dotfiles: 5My other dotfiles:
6- [dotfiles.personal](http://git.tgwil.net/dotfiles.personal/) for personal accounts. 6- [dotfiles.personal](http://git.tgwil.net/dotfiles.personal/) for personal accounts.
7
8## Installation
9### Clone this repository
10```
11cd
12git clone git@git.tgwil.net:dotfiles.core dotfiles.core
13```
14
15### Install the files
16```
17cd
18
19# install .bash_profile
20ln -s $HOME/dotfiles.core/home/.bash_profile $HOME/.bash_profile
21
22# install .bashrc
23ln -s $HOME/dotfiles.core/home/.bashrc $HOME/.bashrc
24```