From a44d91b470e5c6033db330418697c3e85167b320 Mon Sep 17 00:00:00 2001 From: Ralph Azucena Date: Tue, 16 Jan 2018 01:52:25 +0000 Subject: [PATCH 1/4] added customizations --- .tmux.conf.local | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/.tmux.conf.local b/.tmux.conf.local index ae45b07..355514d 100644 --- a/.tmux.conf.local +++ b/.tmux.conf.local @@ -243,10 +243,21 @@ tmux_conf_copy_to_os_clipboard=false # -- user customizations ------------------------------------------------------- -# this is the place to override or undo settings -# increase history size -#set -g history-limit 10000 +unbind C-a +set -g prefix2 C-space +bind C-space send-prefix -2 +set -g history-limit 8000 # boost history + +### -- navigation ---------------------------------------------------------------- + +# session +unbind C-c +bind C-n new-session + +# window +unbind c # old new-window +bind n new-window # start with mouse mode enabled #set -g mouse on From 88ccd80de888c6f7fd931b2694bd7d0719dab6c2 Mon Sep 17 00:00:00 2001 From: Ralph Azucena Date: Thu, 3 May 2018 04:40:23 +0100 Subject: [PATCH 2/4] Enabled vi-mode and mouse mode to share clipboard - Selecting with the mouse copies the text to the OS clipboard - Selecting with vi-mode copies the text to the OS clipboard --- .tmux.conf.local | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.tmux.conf.local b/.tmux.conf.local index 355514d..d30ea16 100644 --- a/.tmux.conf.local +++ b/.tmux.conf.local @@ -248,6 +248,8 @@ unbind C-a set -g prefix2 C-space bind C-space send-prefix -2 set -g history-limit 8000 # boost history +run -b 'tmux bind -t vi-copy y copy-pipe "xclip -in -selection clipboard"' +run -b 'tmux bind -t vi-copy MouseDragEnd1Pane copy-pipe "xclip -in -selection clipboard"' ### -- navigation ---------------------------------------------------------------- From 1dc63062b2b757b7d36782732ba30fdd3e56de87 Mon Sep 17 00:00:00 2001 From: Ralph Azucena Date: Thu, 3 May 2018 04:42:54 +0100 Subject: [PATCH 3/4] Removed bold and replaced with 'none' --- .tmux.conf.local | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.tmux.conf.local b/.tmux.conf.local index d30ea16..4549ce5 100644 --- a/.tmux.conf.local +++ b/.tmux.conf.local @@ -73,17 +73,17 @@ tmux_conf_theme_pane_active_indicator='#00afff' # light blue # status line style tmux_conf_theme_message_fg='#000000' # black tmux_conf_theme_message_bg='#ffff00' # yellow -tmux_conf_theme_message_attr='bold' +tmux_conf_theme_message_attr='none' # status line command style ( : Escape) tmux_conf_theme_message_command_fg='#ffff00' # yellow tmux_conf_theme_message_command_bg='#000000' # black -tmux_conf_theme_message_command_attr='bold' +tmux_conf_theme_message_command_attr='none' # window modes style tmux_conf_theme_mode_fg='#000000' # black tmux_conf_theme_mode_bg='#ffff00' # yellow -tmux_conf_theme_mode_attr='bold' +tmux_conf_theme_mode_attr='none' # status line style tmux_conf_theme_status_fg='#8a8a8a' # light gray @@ -105,7 +105,7 @@ tmux_conf_theme_window_status_format='#I #W' # - #{circled_window_index} tmux_conf_theme_window_status_current_fg='#000000' # black tmux_conf_theme_window_status_current_bg='#00afff' # light blue -tmux_conf_theme_window_status_current_attr='bold' +tmux_conf_theme_window_status_current_attr='none' tmux_conf_theme_window_status_current_format='#I #W' #tmux_conf_theme_window_status_current_format='#{circled_window_index} #W' #tmux_conf_theme_window_status_current_format='#I #W#{?window_zoomed_flag,🔍,}' @@ -118,7 +118,7 @@ tmux_conf_theme_window_status_activity_attr='underscore' # window bell status style tmux_conf_theme_window_status_bell_fg='#ffff00' # yellow tmux_conf_theme_window_status_bell_bg='default' -tmux_conf_theme_window_status_bell_attr='blink,bold' +tmux_conf_theme_window_status_bell_attr='blink,none' # window last status style tmux_conf_theme_window_status_last_fg='#00afff' # light blue @@ -163,12 +163,12 @@ tmux_conf_theme_status_right='#{prefix}#{pairing} #{?battery_status, #{battery_s # status left style tmux_conf_theme_status_left_fg='#000000,#e4e4e4,#e4e4e4' # black, white , white tmux_conf_theme_status_left_bg='#ffff00,#ff00af,#00afff' # yellow, pink, white blue -tmux_conf_theme_status_left_attr='bold,none,none' +tmux_conf_theme_status_left_attr='none,none,none' # status right style tmux_conf_theme_status_right_fg='#8a8a8a,#e4e4e4,#000000' # light gray, white, black tmux_conf_theme_status_right_bg='#080808,#d70000,#e4e4e4' # dark gray, red, white -tmux_conf_theme_status_right_attr='none,none,bold' +tmux_conf_theme_status_right_attr='none,none,none' # pairing indicator tmux_conf_theme_pairing='👓 ' # U+1F453 @@ -186,7 +186,7 @@ tmux_conf_theme_prefix_attr='none' tmux_conf_theme_root='!' tmux_conf_theme_root_fg='none' tmux_conf_theme_root_bg='none' -tmux_conf_theme_root_attr='bold,blink' +tmux_conf_theme_root_attr='none,blink' # battery bar symbols tmux_conf_battery_bar_symbol_full='◼' From a0bf0e7d2318f1ad722c5a6280e4fdb00aa7edaf Mon Sep 17 00:00:00 2001 From: Ralph Azucena Date: Wed, 1 Aug 2018 17:09:03 -0700 Subject: [PATCH 4/4] changed history limit to 60000 (from 8000) --- .tmux.conf.local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.tmux.conf.local b/.tmux.conf.local index 4549ce5..20b5981 100644 --- a/.tmux.conf.local +++ b/.tmux.conf.local @@ -247,7 +247,7 @@ tmux_conf_copy_to_os_clipboard=false unbind C-a set -g prefix2 C-space bind C-space send-prefix -2 -set -g history-limit 8000 # boost history +set -g history-limit 60000 # boost history run -b 'tmux bind -t vi-copy y copy-pipe "xclip -in -selection clipboard"' run -b 'tmux bind -t vi-copy MouseDragEnd1Pane copy-pipe "xclip -in -selection clipboard"'