chore(.zshrc): add tmux plugin to improve shell functionality

feat(.zshrc): add XDG_CONFIG_HOME environment variable to customize configuration directory location
This commit is contained in:
David Ibia
2024-07-29 00:57:22 +01:00
parent 8e39e4b051
commit 236e6a527d

4
.zshrc
View File

@@ -71,7 +71,7 @@ COMPLETION_WAITING_DOTS="true"
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse) # Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup. # 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 source $ZSH/oh-my-zsh.sh
@@ -194,6 +194,8 @@ export GEM_HOME=$HOME/.gem
export PATH=$GEM_HOME/bin:$PATH export PATH=$GEM_HOME/bin:$PATH
export PATH=$HOME/flutter/bin:$PATH export PATH=$HOME/flutter/bin:$PATH
export XDG_CONFIG_HOME="$HOME/.config"
PATH="$HOME/perl5/bin${PATH:+:${PATH}}"; export PATH; PATH="$HOME/perl5/bin${PATH:+:${PATH}}"; export PATH;
PERL5LIB="$HOME/perl5/lib/perl5${PERL5LIB:+:${PERL5LIB}}"; export PERL5LIB; PERL5LIB="$HOME/perl5/lib/perl5${PERL5LIB:+:${PERL5LIB}}"; export PERL5LIB;