1
0

add tmux-continuum config

This commit is contained in:
2025-03-31 20:37:32 +02:00
parent fd9bc93cd2
commit 2c50bc303b
2 changed files with 12 additions and 3 deletions

View File

@@ -12,6 +12,7 @@
- starship
- tmux
- tmux-plugin-manager
- reattach-to-user-namespace (MacOS)
- python3-libtmux
- neovim
- lua-language-server

View File

@@ -87,8 +87,8 @@ set -g @resurrect-capture-pane-contents 'on'
set -g @resurrect-dir '~/.tmux/resurrect/'
set -g @continuum-save-interval '15'
# set -g @continuum-restore 'on'
# set -g @continuum-boot 'on'
set -g @continuum-restore 'on'
set -g @continuum-boot 'on'
set -g @dracula-continuum-mode countdown
### tmux-resurrect
@@ -97,7 +97,15 @@ set -g @resurrect-restore 'R' # prefix + Shift-r - restore
# for neovim
set -g @resurrect-strategy-nvim 'session'
set -g @continuum-boot-options 'alacritty,fullscreen'
# Platform-specific settings
if-shell "uname | grep -q Darwin" {
# macOS specific settings
set -g @continuum-boot-options 'alacritty,fullscreen'
set -g default-command "reattach-to-user-namespace -l $SHELL"
} {
# Linux specific settings
set -g @continuum-boot-options 'alacritty,fullscreen'
}
###############################################################################
###############################################################################