mucking around with tmux, some bash updates
This commit is contained in:
parent
ddf780e24b
commit
f3e7913e53
2 changed files with 15 additions and 2 deletions
15
bash/.bashrc
15
bash/.bashrc
|
@ -38,7 +38,6 @@ if [ -x /usr/bin/dircolors ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
alias vim="nvim"
|
alias vim="nvim"
|
||||||
alias kssh='kitty +kitten ssh'
|
|
||||||
|
|
||||||
# enable programmable completion features
|
# enable programmable completion features
|
||||||
if ! shopt -oq posix; then
|
if ! shopt -oq posix; then
|
||||||
|
@ -49,5 +48,19 @@ if ! shopt -oq posix; then
|
||||||
fi
|
fi
|
||||||
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
|
# Add rustup and the standard rust tooling to the path
|
||||||
. "$HOME/.cargo/env"
|
. "$HOME/.cargo/env"
|
||||||
|
|
|
@ -11,7 +11,7 @@ set-window-option -g mode-keys vi
|
||||||
set-window-option -g status-interval 1
|
set-window-option -g status-interval 1
|
||||||
set-window-option -g automatic-rename on
|
set-window-option -g automatic-rename on
|
||||||
set-window-option -g automatic-rename-format "#{pane_current_command}"
|
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
|
# window status
|
||||||
setw -g window-status-format "#[bg=colour243,fg=colour233] #I #(basename #{pane_current_path})→#W "
|
setw -g window-status-format "#[bg=colour243,fg=colour233] #I #(basename #{pane_current_path})→#W "
|
||||||
|
|
Loading…
Reference in a new issue