summaryrefslogtreecommitdiff
path: root/public/tmux
diff options
context:
space:
mode:
authorChristian Segundo2024-01-20 23:56:23 +0100
committerChristian Segundo2024-01-20 23:56:23 +0100
commite62c2c3c95855232f0211459966a45a098f46a43 (patch)
tree15b8b4d03804d992c1f233b7d2ed41c06c332caa /public/tmux
parent31f926041eb5e27f6b4d139d43149fa848371e5c (diff)
downloaddotfiles-master.tar.gz
mass exodusHEADmaster
Diffstat (limited to 'public/tmux')
-rw-r--r--public/tmux/.tmux.conf46
1 files changed, 0 insertions, 46 deletions
diff --git a/public/tmux/.tmux.conf b/public/tmux/.tmux.conf
deleted file mode 100644
index 1ace947..0000000
--- a/public/tmux/.tmux.conf
+++ /dev/null
@@ -1,46 +0,0 @@
-# Enable mouse mode
-set -g mouse on
-set -g focus-events on
-
-# scrollback buffer
-set-option -g history-limit 3000000
-
-# 10ms escape time
-set-option -sg escape-time 10
-
-# Don't rename windows automatically
-set-option -g allow-rename off
-
-# Remove the right status bar
-set-option -g status-right ""
-
-set-option -g status-style fg=white,bg=black
-
-# Split panes using | and -
-bind | split-window -h
-bind - split-window -v
-unbind '"'
-unbind %
-
-# Synchronize panes using C-x
-bind -n C-x setw synchronize-panes
-
-# Reload config file using r
-bind r source-file ~/.tmux.conf
-
-# List of plugins
-#set -g @plugin 'tmux-plugins/tpm'
-#set -g @plugin 'tmux-plugins/tmux-sensible'
-
-set -g @scroll-down-exit-copy-mode "off"
-set -g @scroll-in-moused-over-pane "off"
-set -g @scroll-speed-num-lines-per-scroll "1"
-set -g @emulate-scroll-for-no-mouse-alternate-buffer "on"
-
-
-# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
-#run -b '~/.tmux/plugins/tpm/tpm'
-
-# Fixes colors
-set -g default-terminal "xterm-256color"
-set -ga terminal-overrides ",*256col*:Tc"