From 93e7ed64c1e2a7e616a729b2b9eba1a8bf1521a3 Mon Sep 17 00:00:00 2001 From: Vlad Date: Sat, 22 May 2021 08:57:52 -0500 Subject: [PATCH] Minor changes --- .tmux.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.tmux.conf b/.tmux.conf index 3516cfc..d776f71 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -1,4 +1,4 @@ -# Variable that is true if tmux runs on macOS. +# Variable that is true if tmux runs on macOS tmux_macos='[ uname | grep -q Darwin ]' # Watch for activity in background windows @@ -11,7 +11,7 @@ set -g default-terminal "xterm-256color" # Misc set -g history-limit 500000 -# set first window to index 1 (not 0) to map more to the keyboard layout... +# set first window to index 1 (not 0) to map more to the keyboard layout set -g base-index 1 setw -g pane-base-index 1 @@ -28,7 +28,7 @@ bind r source-file ~/.tmux.conf \; display 'Reloaded!' # Xterm setw -g xterm-keys on -# Lower escape timing from 500ms to 50ms for quicker response to scroll-buffer access. +# Lower escape timing from 500ms to 50ms for quicker response to scroll-buffer access set -s escape-time 50 # Better splitting @@ -68,5 +68,5 @@ setw -g window-status-current-style fg=white,bg=red,bright # MacOS (brew install reattach-to-user-namespace vim tmux) if-shell "$tmux_macos" "set -g default-shell $SHELL; set -g default-command \"reattach-to-user-namespace -l ${SHELL}\"" -# Enable mouse support. +# Enable mouse support set-option -g mouse on