2020-05-31 13:30:19 +02:00
|
|
|
# hoellen/dotfiles
|
|
|
|
|
|
|
|
Here you can see my dotfiles, which I use in my everyday life. Not everything is perfect and complete, yet.
|
2020-06-03 09:09:04 +02:00
|
|
|
|
2020-06-03 09:13:42 +02:00
|
|
|
## Installation
|
2020-06-03 09:09:04 +02:00
|
|
|
|
2020-06-03 09:13:42 +02:00
|
|
|
To install the dotfiles you need to be in your users home directory (`~/`) and clone the repository with the following steps:
|
2020-06-03 09:09:04 +02:00
|
|
|
|
2020-06-03 09:13:42 +02:00
|
|
|
```shell
|
2020-06-03 09:09:04 +02:00
|
|
|
git init
|
|
|
|
git remote add origin https://code.hoellen.eu/hoellen/dotfiles.git
|
|
|
|
git fetch
|
|
|
|
git checkout -t origin/master
|
|
|
|
```
|
|
|
|
|
|
|
|
To hide the git status in the fish prompt (`➜ ~ git:(master)`) you need to set `git config fish.hide-status 1` for the repository.
|
|
|
|
|