summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tmux/.config/tmux/tmux.conf2
-rw-r--r--zsh/.config/zsh/.zshrc9
2 files changed, 10 insertions, 1 deletions
diff --git a/tmux/.config/tmux/tmux.conf b/tmux/.config/tmux/tmux.conf
index 471ef39..5c017d8 100644
--- a/tmux/.config/tmux/tmux.conf
+++ b/tmux/.config/tmux/tmux.conf
@@ -14,7 +14,7 @@ set -g @plugin 'jaclu/tmux-menus'
set -g @plugin 'schasse/tmux-jump'
set -g @plugin 'MunifTanjim/tmux-mode-indicator'
-set-environment -g TMUX_PLUGIN_MANAGER_PATH "~/.local/share/tmux/plugins/"
+set-environment -g TMUX_PLUGIN_MANAGER_PATH "$XDG_DATA_HOME/tmux/plugins/"
#ctrl-a for prefix
unbind C-b
diff --git a/zsh/.config/zsh/.zshrc b/zsh/.config/zsh/.zshrc
index 176e331..fbc94cb 100644
--- a/zsh/.config/zsh/.zshrc
+++ b/zsh/.config/zsh/.zshrc
@@ -77,6 +77,10 @@ case "$ID" in
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.plugin.zsh
;;
+ gentoo )
+ source /usr/share/zsh/site-functions/zsh-syntax-highlighting.zsh
+ source "$XDG_DATA_HOME"/zsh/zsh-autosuggestions/zsh-autosuggestions.zsh
+ ;;
Darwin )
source /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
@@ -85,3 +89,8 @@ case "$ID" in
echo "no highlight for you"
;;
esac
+
+# pnpm
+export PNPM_HOME="/home/user/.local/share/pnpm"
+export PATH="$PNPM_HOME:$PATH"
+# pnpm end