summaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
Diffstat (limited to '.config')
-rw-r--r--.config/tmux/tmux.conf14
1 files changed, 4 insertions, 10 deletions
diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf
index 7f350fe..07ede9f 100644
--- a/.config/tmux/tmux.conf
+++ b/.config/tmux/tmux.conf
@@ -12,14 +12,14 @@ set -ga terminal-overrides ',*256col*:Tc'
# Status line
set -g status on
-set-option -g status-style bg=#121212,fg=white
+set-option -g status-style bg=#0D0D0D,fg=white
set-option -g automatic-rename on
set-option -g renumber-windows on
set-option -g status-left ""
-set -ga status-left '#[bg=black]#[fg=white] #{?window_zoomed_flag,, }'
+set -ga status-left '#[bg=#0D0D0D]#[fg=white] #{?window_zoomed_flag,, }'
set-option -g status-right ""
set-option -g window-status-format " #{window_index}#(echo ':')#{window_name}#{window_flag} "
-set-option -g window-status-current-format " #[bold,bg=#1c1c1c] #{window_index}#(echo ':')#{window_name}#{window_flag} "
+set-option -g window-status-current-format " #[bg=#1c1c1c] #{window_index}#(echo ':')#{window_name}#{window_flag} "
#set -g default-terminal screen-256color
set -g status-keys vi
@@ -29,7 +29,7 @@ setw -g mode-keys vi
setw -g mouse off
# split panes
-bind s split-window -h
+bind h split-window -h
bind v split-window -v
unbind '"'
unbind %
@@ -44,12 +44,6 @@ bind-key M-k resize-pane -U
bind-key M-h resize-pane -L
bind-key M-l resize-pane -R
-# Vim style pane selection
-bind h select-pane -L
-bind j select-pane -D
-bind k select-pane -U
-bind l select-pane -R
-
# Use Alt-vim keys without prefix key to switch panes
bind -n M-h select-pane -L
bind -n M-j select-pane -D