clean up readme
This commit is contained in:
parent
2680f60cbd
commit
4a504a334b
2 changed files with 21 additions and 8 deletions
24
README.md
24
README.md
|
@ -1,6 +1,6 @@
|
||||||
# dotfiles
|
# dotfiles
|
||||||
|
|
||||||
set the fqdn (this is necessary for some of the host-specific chezmoi config):
|
1) set the fqdn (this is necessary for some of the host-specific chezmoi config):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# debian
|
# debian
|
||||||
|
@ -13,7 +13,7 @@ sudo scutil --set ComputerName $MY_HOSTNAME
|
||||||
dscacheutil -flushcache # maybe reboot, too?
|
dscacheutil -flushcache # maybe reboot, too?
|
||||||
```
|
```
|
||||||
|
|
||||||
set the shell:
|
2) set the shell:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# debian
|
# debian
|
||||||
|
@ -23,16 +23,20 @@ chsh -s $(which zsh)
|
||||||
sudo chpass -s '/opt/local/bin/zsh' $USER
|
sudo chpass -s '/opt/local/bin/zsh' $USER
|
||||||
```
|
```
|
||||||
|
|
||||||
set up the package manager:
|
3) set up the package manager:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
# debian - nothing to do here
|
||||||
|
|
||||||
|
# macos
|
||||||
xcode-select --install
|
xcode-select --install
|
||||||
# grab the pkg installer from: https://www.macports.org/install.php
|
# download the pkg installer from: https://www.macports.org
|
||||||
|
# TODO: is there a reasonable unattended install workflow for macports?
|
||||||
```
|
```
|
||||||
|
|
||||||
patched font, [Anonymice Pro](https://www.nerdfonts.com/font-downloads)
|
4) install a patched font, [Anonymice Pro](https://www.nerdfonts.com/font-downloads). size 16 or 17, no anti-aliasing
|
||||||
|
|
||||||
bootstrap chezmoi:
|
5) bootstrap chezmoi:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sh -c "$(curl -fsLS get.chezmoi.io)" -- \
|
sh -c "$(curl -fsLS get.chezmoi.io)" -- \
|
||||||
|
@ -41,3 +45,11 @@ sh -c "$(curl -fsLS get.chezmoi.io)" -- \
|
||||||
--apply \
|
--apply \
|
||||||
--guess-repo-url=false
|
--guess-repo-url=false
|
||||||
```
|
```
|
||||||
|
|
||||||
|
6) install miniconda:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-arm64.sh
|
||||||
|
chmod +x Miniconda3-latest-MacOSX-arm64.sh
|
||||||
|
sudo ./Miniconda3-latest-MacOSX-arm64.sh -b -u -p /opt/miniconda3
|
||||||
|
```
|
||||||
|
|
|
@ -9,10 +9,10 @@ sudo apt install \
|
||||||
ripgrep \
|
ripgrep \
|
||||||
tmux \
|
tmux \
|
||||||
tree \
|
tree \
|
||||||
|
wget \
|
||||||
zsh \
|
zsh \
|
||||||
-y
|
-y
|
||||||
{{ end }}
|
{{ else if eq .chezmoi.os "darwin" -}}
|
||||||
{{ if eq .chezmoi.hostname "rattusrattus" -}}
|
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
sudo port install \
|
sudo port install \
|
||||||
git \
|
git \
|
||||||
|
@ -20,6 +20,7 @@ sudo port install \
|
||||||
ripgrep \
|
ripgrep \
|
||||||
tmux \
|
tmux \
|
||||||
tree \
|
tree \
|
||||||
|
wget \
|
||||||
zellij \
|
zellij \
|
||||||
zsh
|
zsh
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue