This commit is contained in:
Evan Reichard 2025-09-28 18:32:02 -04:00
parent 1098c68073
commit 2a40dc791d
2 changed files with 6 additions and 1 deletions

View File

@ -16,6 +16,7 @@ in
ssh = "TERM=xterm-256color ssh"; ssh = "TERM=xterm-256color ssh";
}; };
profileExtra = '' profileExtra = ''
export COLORTERM=truecolor
SHELL="$BASH" SHELL="$BASH"
PATH=~/.bin:$PATH PATH=~/.bin:$PATH
bind "set show-mode-in-prompt on" bind "set show-mode-in-prompt on"

View File

@ -40,9 +40,13 @@ in
set -g status-position top set -g status-position top
set -g mouse on set -g mouse on
setw -g mode-keys vi setw -g mode-keys vi
set -g renumber-windows on
set -ga terminal-overrides ",xterm-256color:Tc" set -ga terminal-overrides ",xterm-256color:Tc"
# Start Index 1
set -g base-index 1
setw -g pane-base-index 1
set -g renumber-windows on
# Maintain Directory # Maintain Directory
bind '"' split-window -c "#{pane_current_path}" bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}" bind % split-window -h -c "#{pane_current_path}"