summaryrefslogtreecommitdiff
path: root/.tmux.conf
diff options
context:
space:
mode:
authorDanny Holman <dholman@gymli.xyz>2021-04-02 20:49:02 -0500
committerDanny Holman <dholman@gymli.xyz>2021-04-02 20:49:02 -0500
commit000db5161a8cdbd5b06b802feecdff176fd616d5 (patch)
treeedac818d9c3caa84618ab56329f55057c4a59898 /.tmux.conf
parent07d378b0eef44ab4b72a019a3606388bc7f8989d (diff)
tmux uses different colors now
And yes it is spelled with no 'u' Signed-off-by: Danny Holman <dholman@gymli.xyz>
Diffstat (limited to '.tmux.conf')
-rw-r--r--.tmux.conf28
1 files changed, 28 insertions, 0 deletions
diff --git a/.tmux.conf b/.tmux.conf
index 5e82cbf..0826c3a 100644
--- a/.tmux.conf
+++ b/.tmux.conf
@@ -1,3 +1,31 @@
+# Keymap
+unbind C-b
+set-option -g prefix C-a
+bind C-a send-prefix
+unbind '"'
+unbind %
+bind \\ split-window -h
+bind - split-window -v
+bind r source-file ~/.tmux.conf
+bind h select-pane -L
+bind l select-pane -R
+bind j select-pane -D
+bind k select-pane -U
+bind -r C-h resize-pane -L
+bind -r C-l resize-pane -R
+bind -r C-j resize-pane -D
+bind -r C-k resize-pane -U
+
+# Statusbar
+set -g status-position bottom
+set -g status-justify left
+set -g status-style 'bg=colour45 fg=colour0'
+set -g status-left ''
+set -g status-right ''
+
+# Terminal settings
set -g default-terminal "tmux-256color"
set -g terminal-overrides ",xterm-termite:Tc"
+
+# Mouse
set -g mouse on