dotfiles/dot_bashrc.tmpl

13 lines
586 B
Cheetah
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{{ if and (eq .chezmoi.os "darwin") (stat (print "/etc/bashrc")) }}
# ----取自 /etc/bashrc 預設內容 ----------------------------------------------
{{ include "/etc/bashrc" | trim }}
{{ else if (stat (print "/etc/skel/.bashrc")) }}
# ----取自 /etc/skel/.bashrc 預設內容 ----------------------------------------
{{ include "/etc/skel/.bashrc" | trim }}
{{ end }}
# ----以下是我的自訂內容 ------------------------------------------------------
export LANG=zh_TW.UTF-8 #macOS要手動指定不然被ssh連入使用時會變亂碼
{{ template "common.sh.tmpl" . }}