Try getting by without multi-tmux versions

This commit is contained in:
Andrew Tomaka 2019-09-06 21:14:32 -04:00
parent 62adfc7b68
commit fd0327b02c
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE
3 changed files with 6 additions and 12 deletions

View file

@ -1,2 +0,0 @@
bind s split-window -v # horizontal window split
bind v split-window -h # vertical window split

View file

@ -1,3 +0,0 @@
unbind c; bind c new-window -c "#{pane_current_path}"
bind s split-window -v -c "#{pane_current_path}"
bind v split-window -h -c "#{pane_current_path}"

View file

@ -57,13 +57,12 @@ bind + resize-pane -U 10
# status bar stuff
set -g status on
set -g status-bg colour236
set -g status-fg white
set -g status-left '#[fg=green]#H'
set-window-option -g window-status-current-bg white
set-window-option -g window-status-current-fg black
set-option -g status-right '%Y-%m-%d @ %k:%M'
# because the new tmux is inadequate
source-file ~/.tmux.1-9.conf
if-shell "[[ `tmux -V` == *1.8 ]]" 'source-file ~/.tmux.1-8.conf'
# 1.9 stuff moved in here
unbind c; bind c new-window -c "#{pane_current_path}"
bind s split-window -v -c "#{pane_current_path}"
bind v split-window -h -c "#{pane_current_path}"
set -g window-status-current-style bg=white,fg=black
set -g status-style fg=white,bg=colour236