Skip to content

Commit

Permalink
Updates to tmux.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
DMcP89 committed May 7, 2024
1 parent 01be790 commit 9dd5ae9
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions .tmux.conf
Original file line number Diff line number Diff line change
@@ -1 +1,65 @@
# Fix colors
set -g default-terminal "screen-256color"

# Remap prefix
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix


# Remap pane splits
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %

# Reload conf file
bind r source-file ~/.tmux.conf


# Pane Navigation
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


# UI Theme
# 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=colour1'
set -g pane-active-border-style 'fg=colour3'

# statusbar
set -g status-position bottom
set -g status-justify left
set -g status-style 'fg=colour1'
set -g status-left ''
set -g status-right '%Y-%m-%d %H:%M '
set -g status-right-length 50
set -g status-left-length 10

setw -g window-status-current-style 'fg=colour0 bg=colour1 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=colour7]#W #[fg=colour1]#F '

setw -g window-status-bell-style 'fg=colour2 bg=colour1 bold'

# messages
set -g message-style 'fg=colour2 bg=colour0 bold'

0 comments on commit 9dd5ae9

Please sign in to comment.