Skip to content

Commit

Permalink
Remove zsh inline git config as it clashes with templated file
Browse files Browse the repository at this point in the history
Signed-off-by: Marcus Crane <marcus@utf9k.net>
  • Loading branch information
marcus-crane committed Nov 5, 2024
1 parent 5a2e11e commit f7acf75
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions zshrc.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ TODO: Why is Homebrew on Linux installed as its own user
Some homebrew setup that is needed on Linux

```bash
{{- if eq .chezmoi.os "darwin" -}}
{{ if eq .chezmoi.os "darwin" -}}
eval "$(brew shellenv)"
{{ end -}}
```
Expand Down Expand Up @@ -189,7 +189,7 @@ Pretty boring stuff.
Crystal on macOS Silicon fails with an architecture error for me without this `PKG_CONFIG_PATH` as an example
```bash
{{- if eq .chezmoi.os "darwin" -}}
{{ if eq .chezmoi.os "darwin" -}}
export LDFLAGS="-L$(brew --prefix)/opt/openssl@1.1/lib"
export CPPFLAGS="-I$(brew --prefix)/opt/openssl@1.1/include"
export PKG_CONFIG_PATH="$(brew --prefix)/opt/openssl@1.1/lib/pkgconfig"
Expand Down Expand Up @@ -258,15 +258,6 @@ if [[ $(command -v fzf) ]]; then
fi
```
### git
To save me having to set up each machine, I just set my Git identifiers each time
```bash
git config --global user.name "{{ .name }}"
git config --global user.email "{{ .email }}"
```
### Homebrew
It can take quite some time if Homebrew decides to automatically update everything so let's turn that off
Expand Down

0 comments on commit f7acf75

Please sign in to comment.