dotfiles/POSTINSTALL.md
2022-04-04 23:34:53 +02:00

23 lines
No EOL
470 B
Markdown

# Install fisher
```
yay -S fisher
fisher install pure-fish/pure
fisher install pure-fish/pure
```
# Increase Inotify watchers
See: https://github.com/guard/listen/wiki/Increasing-the-amount-of-inotify-watchers
```
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
```
# Setup SSH
See: https://wiki.archlinux.org/index.php/SSH_keys#Ed25519
```
ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_ed25519 -C "johnnie@posteo.de"
```