From f3e7913e530fceab16b68b2f39d977eee4d0a734 Mon Sep 17 00:00:00 2001 From: Nicole Tietz-Sokolskaya Date: Sat, 10 Sep 2022 08:17:35 -0400 Subject: [PATCH] mucking around with tmux, some bash updates --- bash/.bashrc | 15 ++++++++++++++- tmux/.tmux.conf | 2 +- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/bash/.bashrc b/bash/.bashrc index 4ad627e..998b14f 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -38,7 +38,6 @@ if [ -x /usr/bin/dircolors ]; then fi alias vim="nvim" -alias kssh='kitty +kitten ssh' # enable programmable completion features if ! shopt -oq posix; then @@ -49,5 +48,19 @@ if ! shopt -oq posix; then fi fi +# set PATH so it includes user's private bin if it exists +if [ -d "$HOME/bin" ] ; then + PATH="$HOME/bin:$PATH" +fi + +# set PATH so it includes user's private bin if it exists +if [ -d "$HOME/.local/bin" ] ; then + PATH="$HOME/.local/bin:$PATH" +fi + +if [ -d "/usr/local/go/bin" ] ; then + PATH=$PATH:/usr/local/go/bin +fi + # Add rustup and the standard rust tooling to the path . "$HOME/.cargo/env" diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 272ddb8..5239717 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -11,7 +11,7 @@ set-window-option -g mode-keys vi set-window-option -g status-interval 1 set-window-option -g automatic-rename on set-window-option -g automatic-rename-format "#{pane_current_command}" -set-window-option -g allow-rename off +set-window-option -g allow-rename on # window status setw -g window-status-format "#[bg=colour243,fg=colour233] #I #(basename #{pane_current_path})→#W "