Added power line font path to enable glyphs from powerline font. MOTD replaced with `neofetch --off | lolcat` minor bug fixes
29 lines
686 B
Plaintext
29 lines
686 B
Plaintext
set-option status-position top
|
|
set default-shell /bin/zsh
|
|
set default-terminal "screen-256color"
|
|
|
|
#unbind C-b
|
|
unbind C-a
|
|
set prefix C-b
|
|
bind C-b send-prefix
|
|
#bind-key C-b send-prefix
|
|
#set-option prefix C-b
|
|
unbind '\'
|
|
bind '\' split-window -h
|
|
bind - split-window -v
|
|
unbind '"'
|
|
unbind %
|
|
|
|
bind -n M-Left select-pane -L
|
|
bind -n M-Right select-pane -R
|
|
bind -n M-Up select-pane -U
|
|
bind -n M-Down select-pane -D
|
|
|
|
set-option -g allow-rename off
|
|
set-option -g history-limit 30000
|
|
|
|
bind Up swap-pane -U
|
|
bind Down swap-pane -D
|
|
bind Left swap-pane -U # Note: swap -U moves to previous index, which may be left/up
|
|
bind Right swap-pane -D # Note: swap -D moves to next index, which may be right/down
|