2017-12-25 19:07:59 +00:00
|
|
|
# ShokiNNs dotfiles
|
|
|
|
|
|
|
|
I manage my dotfiles using [dotdrop](https://github.com/deadc0de6/dotdrop).
|
|
|
|
|
|
|
|
## How to install
|
|
|
|
|
2021-09-11 21:45:56 +00:00
|
|
|
1. Install [Homebrew](https://brew.sh/)
|
|
|
|
2. Install `coreutils` via Homebrew.
|
|
|
|
3. Install [pyenv](https://github.com/pyenv/pyenv)
|
2024-01-10 18:11:43 +00:00
|
|
|
a. Install [pyenv-virtualenv](https://github.com/pyenv/pyenv-virtualenv)
|
|
|
|
b. Add pyenv temporarly to your path: `export PATH=$(pyenv root)/shims:${PATH}`
|
|
|
|
c. Install the latest python version via pyenv
|
|
|
|
d. Create a new virtual-env caleld `dotdrop` via `pyenv virtualenv <just installed python verison> dotdrop`
|
|
|
|
4. Initialize pyenv; run `pyenv init` for instructions
|
|
|
|
5. Activate the `dotdrop` virtualenv by using `pyenv shell dotdrop`
|
2021-09-11 21:45:56 +00:00
|
|
|
6. Clone dotfiles, install dependencies for dotdrop and install dotfiles.
|
2017-12-25 19:07:59 +00:00
|
|
|
```shell
|
2021-09-11 21:45:56 +00:00
|
|
|
git clone https://github.com/shokinn/.files ~/.files \
|
2022-07-15 10:37:47 +00:00
|
|
|
&& cd ~/.files \
|
|
|
|
&& git submodule update --init \
|
|
|
|
&& cd .. \
|
2024-01-10 18:11:43 +00:00
|
|
|
&& pip install -r ~/.files/dotdrop/requirements.txt \
|
2021-09-11 21:45:56 +00:00
|
|
|
&& eval $(grep -v "^#" ~/.files/.env.public) ~/.files/dotdrop.sh install
|
2017-12-25 19:07:59 +00:00
|
|
|
```
|
2017-12-30 11:41:12 +00:00
|
|
|
|
|
|
|
## Documentation
|
|
|
|
|
2021-09-11 21:45:56 +00:00
|
|
|
~~Maybe you should [take a look to my documentation](https://docs.pphg.tech/) to understand how I use my dotfiles.~~
|
|
|
|
My documentation is currently quite outdated and should not be considered for help.
|