diff --git a/nix/home/programs/tmux/tmux.conf b/nix/home/programs/tmux/tmux.conf index 56c0449..cfc6cc6 100644 --- a/nix/home/programs/tmux/tmux.conf +++ b/nix/home/programs/tmux/tmux.conf @@ -17,18 +17,14 @@ set-option -g default-terminal screen-256color # STATUS BAR set-option -g status-bg colour234 # light gray bg set-option -g status-fg colour255 # black text -set-option -g status-left-bg default # match -set-option -g status-left-fg colour74 # light blue setw -g window-status-current-format "#[fg=white,bold]#[bg=cyan][#I:#W]" -set -g pane-active-border-fg green # xterm title set-option -g set-titles on set-option -g set-titles-string '[#S:#I #H] #W' # mouse mode -set -g mouse-utf8 on set -g mouse on # clipboard @@ -42,4 +38,4 @@ bind -n C-h run "(tmux display-message -p '#{pane_current_command}' | grep -iq v bind -n C-j run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-j) || tmux select-pane -D" bind -n C-k run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-k) || tmux select-pane -U" bind -n C-l run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-l) || tmux select-pane -R" -bind -n C-\ run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys 'C-\\') || tmux select-pane -l" +bind -n C-\ run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys 'C-\') || tmux select-pane -l"