add zed config/ add linux ssh/git config

This commit is contained in:
reonokiy 2024-09-20 12:13:52 +08:00
parent 410484752c
commit 2a34219c63
Signed by: reonokiy
SSH key fingerprint: SHA256:2VjKpUxMIe0QYY3OVnOMuPiB0X5pvrIpJ+UiyFhxtq0
8 changed files with 1514 additions and 5 deletions

9
dot_ssh/config.tmpl Normal file
View file

@ -0,0 +1,9 @@
{{- if eq .chezmoi.os "windows" -}}
{{- template "dot_sshconfig_windows.tmpl" . -}}
{{- else if eq .chezmoi.os "linux" -}}
{{- if (.chezmoi.kernel.osrelease | lower | contains "microsoft") -}}
{{- template "dot_sshconfig_wsl.tmpl" . -}}
{{- else -}}
{{- template "dot_sshconfig_linux.tmpl" . -}}
{{- end -}}
{{- end -}}