15 lines
543 B
Plaintext
15 lines
543 B
Plaintext
|
# Enable mouse mode (tmux 2.1 and above)
|
||
|
set -g mouse on
|
||
|
#Enable oh my zsh in tmux
|
||
|
#set -g default-command /bin/zsh
|
||
|
# Improve colors
|
||
|
set -g default-terminal 'screen-256color'
|
||
|
# Set scrollback buffer to 10000
|
||
|
set -g history-limit 10000
|
||
|
# Customize the status line
|
||
|
set -g status-fg green
|
||
|
set -g status-bg black
|
||
|
# Mouse based copy
|
||
|
bind-key -T copy-mode-vi MouseDragEnd1Pane send -X copy-pipe-and-cancel "reattach-to-user-namespace pbcopy"
|
||
|
bind-key -T copy-mode MouseDragEnd1Pane send -X copy-pipe-and-cancel "reattach-to-user-namespace pbcopy"
|