From 9003bf424d2fe39750db13d9d6b193efbcbc2201 Mon Sep 17 00:00:00 2001 From: Newnius Date: Tue, 29 Mar 2022 13:34:47 +0000 Subject: [PATCH] Add '.tmux.conf' --- .tmux.conf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .tmux.conf diff --git a/.tmux.conf b/.tmux.conf new file mode 100644 index 0000000..58579b4 --- /dev/null +++ b/.tmux.conf @@ -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"