summaryrefslogtreecommitdiff
path: root/dot_config/tmux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--dot_config/tmux/tmux.conf41
1 files changed, 0 insertions, 41 deletions
diff --git a/dot_config/tmux/tmux.conf b/dot_config/tmux/tmux.conf
deleted file mode 100644
index 5b0f01f..0000000
--- a/dot_config/tmux/tmux.conf
+++ /dev/null
@@ -1,41 +0,0 @@
-# --- obvious settings ---
-# basics
-set -g default-terminal "tmux-256color" # colors
-set -g mouse on # mouse mode
-set -sg escape-time 10 # fix vim
-set -g xterm-keys on # ctrl-arrows, others...
-
-# 0 is very far away from 1
-set -g base-index 1
-set -g pane-base-index 1
-
-# terminal titles
-set -g set-titles on
-set -g set-titles-string "#T"
-
-# true colors
-set -ga terminal-overrides ",alacritty:RGB"
-set -ga terminal-overrides ",foot:RGB"
-set -ga terminal-overrides ",*256col*:RGB"
-set -ga terminal-overrides ",xterm-kitty:RGB"
-
-# --- keybinds ---
-# splitting
-bind | split-window -h
-bind - split-window -v
-unbind '"'
-unbind %
-
-# alt-direction to switch panes
-bind -n M-Left select-pane -L
-bind -n M-Right select-pane -R
-bind -n M-Up select-pane -U
-bind -n M-Down select-pane -D
-
-# convenience
-bind r source-file ~/.config/tmux/tmux.conf
-
-# local conf
-source-file -q ~/.config/tmux/local.tmux
-
-# vim: ft=tmux