This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/dotfiles/tmux.conf

31 lines
650 B
Bash

# {{@@ header() @@}}
# _____
# |_ _| __ ___ _ ___ __
# | || '_ ` _ \| | | \ \/ /
# | || | | | | | |_| |> <
# |_||_| |_| |_|\__,_/_/\_\
set -g escape-time 0
set -g mouse on
bind n select-pane -L
bind e select-pane -D
bind i select-pane -U
bind o select-pane -R
bind | split-window -h -c "#{pane_current_path}"
bind - split-window -v -c "#{pane_current_path}"
bind r source-file ~/.tmux.conf
set -g pane-border-style "fg=default"
set -g pane-active-border-style "fg=#cc5757 bg=default"
set -g status-bg default
set -g status off
set -g default-terminal "xterm-256color"
set -g terminal-overrides ",xterm-256color:Tc"
# vim: ft=sh