summaryrefslogtreecommitdiff
path: root/dot_config
diff options
context:
space:
mode:
authorIbrahim Muftee <ibrahim@muftee.net>2025-08-22 14:06:08 -0500
committerIbrahim Muftee <ibrahim@muftee.net>2026-07-01 00:23:31 -0400
commit510346e10839934217cc0885cf724642f831212f (patch)
treeabd7bc499e2d34a170dd3977a883c16d05bb582a /dot_config
parente9cb678475e8fcf2d9a825f1b0fa0cd47358d4d9 (diff)
feat(tmux): add tmux
Diffstat (limited to 'dot_config')
-rw-r--r--dot_config/tmux/tmux.conf20
1 files changed, 20 insertions, 0 deletions
diff --git a/dot_config/tmux/tmux.conf b/dot_config/tmux/tmux.conf
new file mode 100644
index 0000000..e0d060d
--- /dev/null
+++ b/dot_config/tmux/tmux.conf
@@ -0,0 +1,20 @@
+set -a terminal-features "xterm-256color:RGB"
+set -g prefix C-SPACE
+set -g base-index 1
+set -g renumber-windows on
+set -g mode-keys vi
+set -g status-position top
+set -g status-justify absolute-centre
+set -g status-style "bg=default"
+set -g window-status-current-style "fg=blue bg=default bold"
+set -g status-right ""
+set -g status-left "#S"
+
+bind r source-file "~/.config/tmux/tmux.conf"
+bind f run-shell "tmux neww ~/.local/bin/tmux-session-dispensary.sh"
+
+# Vim key pane naviagtion
+bind -r h select-pane -L
+bind -r j select-pane -D
+bind -r k select-pane -U
+bind -r l select-pane -R