add profile and zshrc files for darwin and linux

This commit is contained in:
Simon Rieger 2023-08-27 18:23:58 +02:00
parent b219b5cc6b
commit d1b481d4de
6 changed files with 26 additions and 0 deletions

9
.zprofile_darwin Normal file
View file

@ -0,0 +1,9 @@
export LC_ALL=en_US.UTF-8
export PATH=/opt/homebrew/opt/ruby/bin:/opt/homebrew/lib/ruby/gems/3.0.0/bin:$PATH
# Added by Toolbox App
export PATH="$PATH:/Users/simono41/Library/Application Support/JetBrains/Toolbox/scripts"
eval "$(/opt/homebrew/bin/brew shellenv)"

5
.zshrc_darwin Normal file
View file

@ -0,0 +1,5 @@
source /opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh
#source /opt/homebrew/share/zsh-autocomplete/zsh-autocomplete.plugin.zsh
PATH="$PATH:/Applications/WezTerm.app/Contents/MacOS"
export PATH

6
dot_zprofile.tmpl Normal file
View file

@ -0,0 +1,6 @@
{{- if eq .chezmoi.os "darwin" -}}
{{- include ".zprofile_darwin" -}}
{{- else if eq .chezmoi.os "linux" -}}
{{- include ".zprofile_linux" -}}
{{- end -}}

6
dot_zshrc.tmpl Normal file
View file

@ -0,0 +1,6 @@
{{- if eq .chezmoi.os "darwin" -}}
{{- include ".zshrc_darwin" -}}
{{- else if eq .chezmoi.os "linux" -}}
{{- include ".zshrc_linux" -}}
{{- end -}}