24 lines
789 B
Markdown
24 lines
789 B
Markdown
# kreeger's dotfiles
|
|
|
|
My dotfiles. Also works with the following repos:
|
|
|
|
To use, clone this repo (and its submodules!) to `$XDG_CONFIG_HOME/dotfiles` (on
|
|
my macOS machine, I have this set to `~/.config` instead of
|
|
`~/Library/Application Support`).
|
|
|
|
```bash
|
|
$ git clone --recurse-submodules \
|
|
https://git.kree.gr/kreeger/dotfiles \
|
|
$XDG_CONFIG_HOME/dotfiles
|
|
$ $XDG_CONFIG_HOME/dotfiles/setup.sh
|
|
```
|
|
|
|
This will make sure my `zsh` config is symlinked to the right place, and then
|
|
everything else will be symlinked to `$XDG_CONFIG_HOME` to conform to the [XDG
|
|
base directory specification][xdg].
|
|
|
|
My `zshrc` files also include a function (`update_dotfiles`) to do a `git pull`
|
|
on this repo to keep things up-to-date.
|
|
|
|
[xdg]: https://specifications.freedesktop.org/basedir-spec/latest/
|