mirror of
https://github.com/Ajetski/dotfiles.git
synced 2025-09-30 14:03:18 -09:00
51 lines
1.2 KiB
Bash
51 lines
1.2 KiB
Bash
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
|
|
unbind C-b
|
|
set -g prefix C-space
|
|
|
|
# reload config file (change file location to your the tmux.conf you want to use)
|
|
bind r source-file ~/.config/tmux/.tmux.conf
|
|
|
|
bind C-H resize-pane -L 5
|
|
bind C-J resize-pane -D 5
|
|
bind C-K resize-pane -U 5
|
|
bind C-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=default'
|
|
set -g pane-active-border-style 'fg=colour51,bg=default'
|
|
|
|
bind b set status
|
|
set -g status-style fg=white,bg=default
|
|
set -g status-interval 15
|
|
set -g status-justify left
|
|
set -g status-keys vi
|
|
set -g status-left "[#S] "
|
|
set -g status-left-length 10
|
|
set -g status-left-style default
|
|
set -g status-position bottom
|
|
set -g status-right-length 40
|
|
set -g status-right-style default
|
|
|
|
set -g window-style bg=default
|
|
set -g window-active-style bg=default
|
|
|
|
bind | split-window -h
|
|
bind - split-window -v
|
|
bind _ split-window -v
|