From 236e6a527d0876e0ddecf16a673d0f537ee889a7 Mon Sep 17 00:00:00 2001 From: David Ibia Date: Mon, 29 Jul 2024 00:57:22 +0100 Subject: [PATCH] chore(.zshrc): add tmux plugin to improve shell functionality feat(.zshrc): add XDG_CONFIG_HOME environment variable to customize configuration directory location --- .zshrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index e9cb127..123af01 100644 --- a/.zshrc +++ b/.zshrc @@ -71,7 +71,7 @@ COMPLETION_WAITING_DOTS="true" # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ # Example format: plugins=(rails git textmate ruby lighthouse) # Add wisely, as too many plugins slow down shell startup. -plugins=(git asdf zsh-syntax-highlighting) +plugins=(git asdf zsh-syntax-highlighting tmux) source $ZSH/oh-my-zsh.sh @@ -194,6 +194,8 @@ export GEM_HOME=$HOME/.gem export PATH=$GEM_HOME/bin:$PATH export PATH=$HOME/flutter/bin:$PATH +export XDG_CONFIG_HOME="$HOME/.config" + PATH="$HOME/perl5/bin${PATH:+:${PATH}}"; export PATH; PERL5LIB="$HOME/perl5/lib/perl5${PERL5LIB:+:${PERL5LIB}}"; export PERL5LIB;