feat: added tmux dots

Changed files
+43
+42
.tmux.conf
···
+
# TMUX Leader
+
set -g prefix C-Space
+
+
# Enable mouse resizing
+
set -g mouse on
+
+
# Start index at 1
+
set -g base-index 1
+
set -g pane-base-index 1
+
set-window-option -g pane-base-index 1
+
set-option -g renumber-windows on
+
+
# vim navigation
+
bind-key h select-pane -L
+
bind-key j select-pane -D
+
bind-key k select-pane -U
+
bind-key l select-pane -R
+
+
# Theme & Color
+
set -g default-terminal "tmux-256color"
+
set -ag terminal-features ",xterm-256color:RGB"
+
set -g @catppuccin_flavor 'macchiato'
+
set-option -g status-position bottom
+
set -g status-right-length 100
+
set -g status-left-length 100
+
set -g status-left ""
+
set -g status-right "#{E:@catppuccin_status_application}"
+
set -agF status-right "#{E:@catppuccin_status_cpu}"
+
set -ag status-right "#{E:@catppuccin_status_uptime}"
+
set -ag status-right "#{E:@catppuccin_status_session}"
+
+
# List of plugins
+
set -g @plugin 'tmux-plugins/tpm'
+
set -g @plugin 'catppuccin/tmux#v2.1.3'
+
set -g @plugin 'tmux-plugins/tmux-cpu'
+
+
# Quick reloading
+
unbind r
+
bind r source-file ~/.tmux.conf
+
+
# Initialize TMUX plugin manager
+
run '~/.tmux/plugins/tpm/tpm'
+1
README.md
···
nvim
git
neofetch
+
tmux
```