Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump tj-actions/changed-files from 26 to 41 in /.github/workflows #65

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/confluence.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v26
uses: tj-actions/changed-files@v41
with:
files: |
docs/*.md
Expand Down
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