mirror of
https://github.com/MillironX/dotfiles.git
synced 2024-11-14 19:03:09 +00:00
fix: Only evaluate distro if os is linux
This commit is contained in:
parent
be48c89689
commit
24e09bc084
2 changed files with 6 additions and 0 deletions
|
@ -1,6 +1,8 @@
|
|||
set -g default-terminal "tmux-256color"
|
||||
{{- if eq .chezmoi.os "linux" }}
|
||||
{{ if (eq .chezmoi.osRelease.id "debian") }}
|
||||
source "/usr/share/powerline/bindings/tmux/powerline.conf"
|
||||
{{ else }}
|
||||
source "/usr/share/tmux/powerline.conf"
|
||||
{{ end }}
|
||||
{{- end }}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
{{- if eq .chezmoi.os "linux" }}
|
||||
{{- if or
|
||||
(eq .machinetype "workstation")
|
||||
(eq .chezmoi.osRelease.id "fedora")
|
||||
|
@ -10,6 +11,7 @@ if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]
|
|||
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
||||
fi
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
||||
# User specific environment
|
||||
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
|
||||
|
@ -65,6 +67,7 @@ source $HOME/.envvar
|
|||
alias zshconfig="$EDITOR ~/.zshrc"
|
||||
source $HOME/.aliases
|
||||
|
||||
{{- if eq .chezmoi.os "linux" }}
|
||||
{{ if or
|
||||
(eq .machinetype "workstation")
|
||||
(eq .chezmoi.osRelease.id "fedora")
|
||||
|
@ -73,3 +76,4 @@ source $HOME/.aliases
|
|||
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
|
Loading…
Reference in a new issue