2022-01-30 18:28:45 +00:00
|
|
|
# Dotfiles
|
|
|
|
|
|
|
|
These are my dotfiles, managed by [chezmoi](https://www.chezmoi.io/).
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
2022-01-30 19:05:24 +00:00
|
|
|
### Prerequisites
|
|
|
|
|
|
|
|
The following packages are required to clone the repository
|
|
|
|
and install 1password-cli to access the key for the encrypted files:
|
|
|
|
|
|
|
|
* curl
|
|
|
|
* git
|
|
|
|
* git-lfs
|
|
|
|
* gpg
|
|
|
|
* unzip
|
|
|
|
|
|
|
|
```bash
|
|
|
|
apt install curl git git-lfs gpg unzip
|
|
|
|
```
|
|
|
|
|
|
|
|
### Install chezmoi and clone the dotfiles
|
|
|
|
|
|
|
|
```bash
|
|
|
|
sh -c "$(curl -fsLS git.io/chezmoi)" -- -b "${HOME}/bin" -d init --apply weyhmueller
|
|
|
|
```
|
|
|
|
|
|
|
|
### Install vim-Plugins
|
|
|
|
|
2022-01-30 18:28:45 +00:00
|
|
|
```bash
|
2022-01-30 19:05:24 +00:00
|
|
|
vim -c "execute \"PlugUpdate\"
|
|
|
|
```
|