summaryrefslogtreecommitdiff
path: root/tmux
diff options
context:
space:
mode:
Diffstat (limited to 'tmux')
-rw-r--r--tmux/.tmux.conf56
1 files changed, 56 insertions, 0 deletions
diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf
new file mode 100644
index 0000000..2187745
--- /dev/null
+++ b/tmux/.tmux.conf
@@ -0,0 +1,56 @@
+set-option -as terminal-features ',xterm-256color:RGB'
+setw -g mode-keys vi
+
+# List of plugins
+set -g @plugin 'tmux-plugins/tpm'
+set -g @plugin 'AngryMorrocoy/tmux-neolazygit'
+set -g @plugin 'tmux-plugins/tmux-open'
+set -g @plugin 'tmux-plugins/tmux-pain-control'
+set -g @plugin 'tmux-plugins/tmux-sensible'
+set -g @plugin 'tmux-plugins/tmux-yank'
+
+# DESIGN TWEAKS
+
+# don't do anything when a 'bell' rings
+set -g visual-activity off
+set -g visual-bell off
+set -g visual-silence off
+setw -g monitor-activity off
+set -g bell-action none
+
+# clock mode
+setw -g clock-mode-colour colour1
+
+# copy mode
+setw -g mode-style 'fg=colour1 bg=colour18 bold'
+
+# pane borders
+set -g pane-border-style 'fg=colour7 dim'
+set -g pane-active-border-style 'fg=colour7'
+
+# statusbar
+set -g status-position bottom
+set -g status-justify left
+set -g status-style 'fg=terminal'
+set -g status-left '#[fg=colour0 bold bg=colour7] #S #[fg=terminal bg=terminal]'
+set -g status-right '%Y-%m-%d %H:%M '
+set -g status-right-length 50
+set -g status-left-length 25
+
+setw -g window-status-current-style 'fg=colour15 bg=colour2 bold'
+setw -g window-status-current-format ' #I #W #F '
+
+setw -g window-status-style 'fg=colour1 dim'
+setw -g window-status-format ' #I #[fg=terminal dim]#W #[fg=colour1 dim]#F '
+
+setw -g window-status-bell-style 'fg=colour2 bg=colour9 bold'
+
+# messages
+set -g message-style 'fg=terminal bg=terminal bold'
+
+# titles
+set -g set-titles on
+set -g set-titles-string "#W"
+
+# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
+run '~/.tmux/plugins/tpm/tpm'