dotfiles/tmux.conf

57 lines
1.3 KiB
Plaintext

#tmux config file
#change statusbar
set -g status-bg colour0
set -g status-fg white
set-window-option -g window-status-current-bg white
set-window-option -g window-status-current-fg black
set-option -g display-panes-colour black
set-option -g display-panes-active-colour white
#start powerline
run-shell "powerline-daemon -q"
source-file "$HOME/.local/lib/python2.7/site-packages/powerline/bindings/tmux/powerline.conf"
send-keys C-c
set -g default-terminal "screen-256color"
#use ctrl-a instead of ctrl-b
unbind C-b
set -g prefix C-a
#alt-arrow for switching panes
bind -n M-k run-shell 'tmux-vim-select-pane -U'
bind -n M-j run-shell 'tmux-vim-select-pane -D'
bind -n M-h run-shell 'tmux-vim-select-pane -L'
bind -n M-l run-shell 'tmux-vim-select-pane -R'
#notify when something happens in another windows
setw -g monitor-activity on
# set -g visual-activity on
#load tmux setup
bind D source-file ~/.dotfiles/tmux/dev
#add keybind to kill current tmux window
bind X kill-window
#setup kill comnmand
# bind k confirm kill-window
# bind K confirm kill-server
#title stuff
set -g set-titles-string '#T'
set-option -g set-titles on
#setup tabs controls
bind -n C-j new-window
bind -n C-h prev
bind -n C-l next
bind -n C-M-l swap-window -t +1
bind -n C-M-h swap-window -t -1
#enable aggressive-resize
setw -g aggressive-resize on
#autorename
setw -g automatic-rename on