diff options
Diffstat (limited to 'tmux/tmux.conf')
-rw-r--r-- | tmux/tmux.conf | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/tmux/tmux.conf b/tmux/tmux.conf new file mode 100644 index 0000000..396c56e --- /dev/null +++ b/tmux/tmux.conf @@ -0,0 +1,41 @@ +set -g default-terminal "screen-256color" + +## status bar +#set -g status-utf8 on +set -g status-interval 60 +set -g status-left-length 40 +set -g status-justify centre + +# display activity from other windows +setw -g monitor-activity on +set -g visual-activity on + +# status bar colors +set -g status-style fg=colour247,bg=black + +# current window colors +setw -g window-status-current-style fg=colour250,bg=black,bright + +# pane border colors +set -g pane-border-style fg=green,bg=default +set -g pane-active-border-style fg=green,bg=default + +# command line colors +set -g message-style fg=colour250,bg=black,bright + +# use hjkl to move between panes +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R + +# start splits in the same directory +bind '"' split-window -c "#{pane_current_path}" +bind '%' split-window -c "#{pane_current_path}" -h + +# use ctrl-a instead of ctrl-b +bind n switch-client -n +set -g prefix C-a +unbind C-b + +#set -g default-terminal "screen-256color" |