dotfiles/.config/tmux/.tmux.conf
Adam Jeniski fd8882df39 fiddle
2022-07-09 23:38:04 -04:00

49 lines
1.1 KiB
Bash

set -g prefix C-space
unbind C-b
set -g default-terminal "xterm-256color"
set -ga terminal-overrides ",*256col*:Tc"
# These make tmux transparent again
set -g "window-style" "bg=default"
set -g "window-active-style" "bg=default"
setw -g mouse
# reload config file (change file location to your the tmux.conf you want to use)
bind r source-file ~/.config/tmux/.tmux.conf
#add vim binds with mod
bind -n M-h select-pane -L
bind -n M-j select-pane -D
bind -n M-k select-pane -U
bind -n M-l select-pane -R
bind -n M-H resize-pane -L 5
bind -n M-J resize-pane -D 5
bind -n M-K resize-pane -U 5
bind -n M-L resize-pane -R 5
set -s escape-time 0
#add vim binds with prefix
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# set the pane border colors
set -g pane-border-style 'fg=colour235,bg=colour238'
set -g pane-active-border-style 'fg=colour51,bg=colour236'
bind b set status
set -g status-style fg=white,bg=default
set -g window-style bg=default
set -g window-active-style bg=default
bind | split-window -h
bind - split-window -v