dotfiles/.config/tmux/.tmux.conf
Adam Jeniski 611785d2b8 tinker
2022-06-23 22:27:38 -04:00

43 lines
966 B
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
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