Re-Organize Dotfiles into Separate Stow Packages

This commit is contained in:
Sravan Balaji
2024-05-27 08:51:51 -04:00
parent 0dc5db0fcb
commit cb63752e5d
196 changed files with 594 additions and 2478 deletions

46
tmux/.tmux.conf Normal file
View File

@@ -0,0 +1,46 @@
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
bind r source-file ~/.tmux.conf
bind -n M-Left select-pane -L
bind -n M-h select-pane -L
bind -n M-Right select-pane -R
bind -n M-l select-pane -R
bind -n M-Up select-pane -U
bind -n M-k select-pane -U
bind -n M-Down select-pane -D
bind -n M-j select-pane -D
set -g mouse on
set-option -g allow-rename off
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'dracula/tmux'
set -g @plugin 'dracula/tmux'
set -g @dracula-plugins "git cpu-usage ram-usage battery time"
set -g @dracula-show-powerline true
set -g @dracula-show-flags true
set -g @dracula-refresh-rate 5
set -g @dracula-show-left-icon session
set -g @dracula-show-empty-plugins false
run -b '~/.tmux/plugins/tpm/tpm'