Skip to content

Commit

Permalink
chore: change dracula to catppuccin (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
luismayta authored Sep 25, 2023
1 parent 98ea467 commit 0bee481
Showing 1 changed file with 41 additions and 10 deletions.
51 changes: 41 additions & 10 deletions conf/.tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,16 @@ bind-key X \
run-shell "tmux kill-session -t $(cat /tmp/tmux-session-to-kill); rm /tmp/tmux-session-to-kill"
# }}}

# set vi-mode {{{
set-window-option -g mode-keys vi
# }}}

# keybindings {{{
bind-key -T copy-mode-vi v send-keys -X begin-selection
bind-key -T copy-mode-vi C-v send-keys -X rectangle-toggle
bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel
# }}}

# Theme {{{

# Status bar config
Expand Down Expand Up @@ -159,13 +169,35 @@ set -g @jump-key 'g'

# dracula/tmux {{{

set -g @dracula-show-powerline true
set -g @dracula-show-flags true
set -g @dracula-military-time true
set -g @dracula-refresh-rate 30
set -g @dracula-show-timezone true
set -g @dracula-show-left-icon window
set -g @dracula-cpu-usage true
# set -g @dracula-show-powerline true
# set -g @dracula-show-flags true
# set -g @dracula-military-time true
# set -g @dracula-refresh-rate 30
# set -g @dracula-show-timezone true
# set -g @dracula-show-left-icon window
# set -g @dracula-cpu-usage true

# }}}

# catppuccin/tmux {{{
set -g @catppuccin_flavour 'mocha' # or frappe, macchiato, mocha

set -g @catppuccin_window_left_separator "█"
set -g @catppuccin_window_right_separator "█ "
set -g @catppuccin_window_number_position "right"
set -g @catppuccin_window_middle_separator " █"

set -g @catppuccin_window_default_fill "number"

set -g @catppuccin_window_current_fill "number"
set -g @catppuccin_window_current_text "#{pane_current_path}"

set -g @catppuccin_status_modules_right "application session date_time"
set -g @catppuccin_status_left_separator ""
set -g @catppuccin_status_right_separator ""
set -g @catppuccin_status_right_separator_inverse "yes"
set -g @catppuccin_status_fill "all"
set -g @catppuccin_status_connect_separator "no"

# }}}

Expand All @@ -177,16 +209,15 @@ if -b '"$(uname)" = Linux' 'source-file $HOME/.tmux_linux.conf'
# # List of plugins
set -g @tpm_plugins ' \
tmux-plugins/tpm \
catppuccin/tmux \
wfxr/tmux-fzf-url \
dracula/tmux \
tmux-plugins/tmux-battery \
tmux-plugins/tmux-copycat \
tmux-plugins/tmux-yank \
tmux-plugins/tmux-sensible \
tmux-plugins/tmux-open \
tmux-plugins/tmux-resurrect \
schasse/tmux-jump \
nhdaly/tmux-better-mouse-mode \
christoomey/vim-tmux-navigator \
sainnhe/tmux-fzf \
'

Expand Down

0 comments on commit 0bee481

Please sign in to comment.