diff options
author | Tristan Williams <tgwil@tgwil.net> | 2024-10-10 01:17:56 -0400 |
---|---|---|
committer | Tristan Williams <tgwil@tgwil.net> | 2024-10-10 01:17:56 -0400 |
commit | b0da6782e3b22bb9d667b76718b87eb3d7e46bb6 (patch) | |
tree | 116e5bc01e7d72bb01b833a5d60850b07e2e83b4 | |
parent | Add support for .bashrc.personal (diff) | |
download | dotfiles.core-b0da6782e3b22bb9d667b76718b87eb3d7e46bb6.tar.gz dotfiles.core-b0da6782e3b22bb9d667b76718b87eb3d7e46bb6.tar.bz2 dotfiles.core-b0da6782e3b22bb9d667b76718b87eb3d7e46bb6.zip |
Add installation instructions to README.md
-rw-r--r-- | README.md | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -4,3 +4,21 @@ These are my core dotfiles. They are used on every account on every machine, inc | |||
4 | 4 | ||
5 | My other dotfiles: | 5 | My 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 | ``` | ||
11 | cd | ||
12 | git clone git@git.tgwil.net:dotfiles.core dotfiles.core | ||
13 | ``` | ||
14 | |||
15 | ### Install the files | ||
16 | ``` | ||
17 | cd | ||
18 | |||
19 | # install .bash_profile | ||
20 | ln -s $HOME/dotfiles.core/home/.bash_profile $HOME/.bash_profile | ||
21 | |||
22 | # install .bashrc | ||
23 | ln -s $HOME/dotfiles.core/home/.bashrc $HOME/.bashrc | ||
24 | ``` | ||