Add '.tmux.conf'

This commit is contained in:
Newnius 2022-03-29 13:34:47 +00:00
parent dda764dba8
commit 9003bf424d

14
.tmux.conf Normal file
View File

@ -0,0 +1,14 @@
# 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"