32 lines
565 B
Bash
32 lines
565 B
Bash
# Vilyaem's Tmux
|
|
|
|
# Default shell is zsh
|
|
set-option -g default-shell /bin/zsh
|
|
|
|
# colors
|
|
#set-option -g pane-border-bg blue
|
|
#set-option -g pane-border-fg black
|
|
|
|
set -g status-bg blue
|
|
set -g status-fg black
|
|
|
|
# Index at 1 instead of 0
|
|
set -g base-index 1
|
|
setw -g pane-base-index 1
|
|
|
|
# Different prefix key Ctrl-b -> Ctrl-a
|
|
set -g prefix C-a
|
|
|
|
# File reloading
|
|
#bind r source-file ~/.tmux.conf \; display “config file loaded.”
|
|
|
|
# Close immediately
|
|
unbind x
|
|
bind x kill-pane
|
|
bind X kill-session
|
|
|
|
# More window splitting
|
|
bind | split-window -h
|
|
bind - split-window -v
|
|
|
|
|