diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-12-24 13:54:03 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-12-24 13:54:03 +0900 |
| commit | 28e8bdf7f8286bd431b7f3b709e79f3827b31469 (patch) | |
| tree | 85b44eff6da4d8443198fb6e04dfb6ee55244588 /debian/.config/sesh | |
| parent | 8470ff001befcfd0f626dea69a9e76d43aee0511 (diff) | |
updates
Diffstat (limited to 'debian/.config/sesh')
| -rw-r--r-- | debian/.config/sesh/sesh.toml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/debian/.config/sesh/sesh.toml b/debian/.config/sesh/sesh.toml new file mode 100644 index 0000000..349c5ba --- /dev/null +++ b/debian/.config/sesh/sesh.toml @@ -0,0 +1,54 @@ +sort_order = [ + "tmuxinator", # show first + "tmux", + "config", + "zoxide", # show last +] + +[default_session] +startup_command = "if git rev-parse --is-inside-work-tree >/dev/null 2>&1; then git status; else clear && ls -I .git; fi" +preview_command = "eza -glaa --icons --group-directories-first --color=always {}" + +[[session]] +name = "code" +path = "~" +# disable_startup_command = true + +[[session]] +name = "nvim config" +path = "~/.config/nvim" +startup_command = "nvim" + +[[session]] +name = "tmux config" +path = "~/.config/tmux" +startup_command = "nvim tmux.conf" +preview_command = "bat --plain --wrap character --color=always ~/.config/tmux/tmux.conf" + +[[session]] +name = "config" +path = "~/.config" + +[[session]] +name = "dotfiles" +path = "~/.dotfiles" + +[[session]] +name = "private" +path = "~/Private" + +[[session]] +name = "public" +path = "~/Public" + +[[session]] +name = "scripts" +path = "~/.local/bin" + +[[session]] +name = "suckless" +path = "~/.local/src/suckless" + +[[window]] +name = "git" +startup_script = "git pull" |
