From 455d5636a77e38260f0b867ee74734ba7af60690 Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Thu, 2 Mar 2023 19:33:57 +0000 Subject: [PATCH] Update tmux.conf --- dot_profile | 13 +++++++++++++ dot_tmux.conf | 2 -- dot_tmux.conf.tmpl | 6 ++++++ 3 files changed, 19 insertions(+), 2 deletions(-) delete mode 100644 dot_tmux.conf create mode 100644 dot_tmux.conf.tmpl 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 }}