diff --git a/dot_profile b/dot_profile index af1c378..17df7a2 100644 --- a/dot_profile +++ b/dot_profile @@ -7,6 +7,19 @@ if [ -d $HOME/.julia/juliaup/bin ]; then export PATH="$HOME/.julia/juliaup/bin:$PATH" fi +# >>> juliaup initialize >>> + +# !! Contents within this block are managed by juliaup !! + +case ":$PATH:" in + *:/home/millironx/.juliaup/bin:*) + ;; + *) + export PATH=/home/millironx/.juliaup/bin${PATH:+:${PATH}} + ;; +esac +# <<< juliaup initialize <<< + # Linuxbrew setup if [ -d $HOME/../linuxbrew/.linuxbrew ]; then BREWPATH=$HOME/../linuxbrew/.linuxbrew diff --git a/dot_tmux.conf b/dot_tmux.conf deleted file mode 100644 index 029f1db..0000000 --- a/dot_tmux.conf +++ /dev/null @@ -1,2 +0,0 @@ -set -g default-terminal "tmux-256color" -source "/usr/share/tmux/powerline.conf" diff --git a/dot_tmux.conf.tmpl b/dot_tmux.conf.tmpl new file mode 100644 index 0000000..1c3c442 --- /dev/null +++ b/dot_tmux.conf.tmpl @@ -0,0 +1,6 @@ +set -g default-terminal "tmux-256color" +{{- if (eq .chezmoi.osRelease.id "debian") }} +source "/usr/share/powerline/bindings/tmux/powerline.conf" +{{- else -}} +source "/usr/share/tmux/powerline.conf" +{{- end }}