summaryrefslogtreecommitdiff
path: root/tmux.conf
diff options
context:
space:
mode:
Diffstat (limited to 'tmux.conf')
-rw-r--r--tmux.conf36
1 files changed, 36 insertions, 0 deletions
diff --git a/tmux.conf b/tmux.conf
new file mode 100644
index 0000000..590def5
--- /dev/null
+++ b/tmux.conf
@@ -0,0 +1,36 @@
+unbind C-b
+set -g prefix ^A
+bind ^A send-prefix
+set -g aggressive-resize on
+
+set -g default-terminal "screen-256color"
+
+## set status bar
+set -g status-bg "#373b41"
+set -g status-fg "#81a2be"
+
+## highlight active window
+setw -g window-status-current-bg "#282a2e"
+setw -g window-status-current-fg "#b294bb"
+
+## highlight activity in status bar
+setw -g window-status-activity-fg "#c5c8c6"
+setw -g window-status-activity-bg "#1d1f21"
+
+## pane border and colors
+set -g pane-active-border-bg default
+set -g pane-active-border-fg "#373b41"
+set -g pane-border-bg default
+set -g pane-border-fg "#373b41"
+
+set -g clock-mode-colour "#81a2be"
+set -g clock-mode-style 24
+
+set -g message-bg "#8abeb7"
+set -g message-fg "#000000"
+
+set -g message-command-bg "#8abeb7"
+set -g message-command-fg "#000000"
+
+set -g mode-bg "#8abeb7"
+set -g mode-fg "#000000"