27 lines
354 B
Markdown
27 lines
354 B
Markdown
|
|
# My dotfiles
|
||
|
|
|
||
|
|
This directory contains the dotfiles for my system
|
||
|
|
|
||
|
|
## Requirements
|
||
|
|
|
||
|
|
Ensure you have the following installed on your system
|
||
|
|
|
||
|
|
```
|
||
|
|
pacman -S git stow --needed
|
||
|
|
```
|
||
|
|
|
||
|
|
## Installation
|
||
|
|
|
||
|
|
First, check out the dotfiles repo in your $HOME directory using git
|
||
|
|
|
||
|
|
```
|
||
|
|
git clone ...
|
||
|
|
cd dotfiles
|
||
|
|
```
|
||
|
|
|
||
|
|
then use GNU stow to create symlinks
|
||
|
|
|
||
|
|
```
|
||
|
|
$ stow .
|
||
|
|
```
|