This commit is contained in:
2026-04-21 23:24:05 +02:00
parent ad8b80ae0f
commit 5e48702683
2 changed files with 24 additions and 22 deletions

View File

@@ -13,9 +13,11 @@ bind -n M-L next-window
bind s run-shell "tmuxss" bind s run-shell "tmuxss"
bind -n C-s run-shell "tmuxss" bind -n C-s run-shell "tmuxss"
bind C-k run-shell "tmuxss -k" bind C-k run-shell "tmuxss -k"
bind C-r run-shell "tmuxss -r" # bind C-r run-shell "tmuxss -r"
bind C-o display-popup -E "tmuxss -i" bind C-o display-popup -E "tmuxss -i"
bind C-t display-popup -E "fish" bind C-t display-popup -E "fish"
# suspend kills the terminal window in my setup
unbind C-z
unbind -n C-k unbind -n C-k
unbind Space unbind Space
bind-key i run-shell "source ~/.config/tmux/functions.sh && bring_pane" bind-key i run-shell "source ~/.config/tmux/functions.sh && bring_pane"

View File

@@ -61,7 +61,7 @@
"name": "code", "name": "code",
"path": ".", "path": ".",
"read_only": true, "read_only": true,
"hist_file": "./.hist/code", "hist_file": ".hist/code",
"command_run": "nvim" "command_run": "nvim"
}, },
{ {
@@ -73,14 +73,14 @@
"hsplit": [ "hsplit": [
{ {
"command_prepare": "ENV=development bun --preload ./src/instrumentation.ts src/index", "command_prepare": "ENV=development bun --preload ./src/instrumentation.ts src/index",
"path": "./apps/gateway-connector", "path": "apps/gateway-connector",
"hist_file": "./.hist/gateway-connector", "hist_file": ".hist/gateway-connector",
"read_only": false "read_only": false
}, },
{ {
"command_prepare": "ENV=development bun --preload ./src/instrumentation.ts src/index", "command_prepare": "ENV=development bun --preload ./src/instrumentation.ts src/index",
"path": "./apps/event-handler", "path": "apps/event-handler",
"hist_file": "./.hist/event-handler", "hist_file": ".hist/event-handler",
"read_only": false "read_only": false
} }
] ]
@@ -89,14 +89,14 @@
"hsplit": [ "hsplit": [
{ {
"command_prepare": "ENV=development bun --preload ./src/instrumentation.ts src/index", "command_prepare": "ENV=development bun --preload ./src/instrumentation.ts src/index",
"path": "./apps/fetch-engine", "path": "apps/fetch-engine",
"hist_file": "./.hist/fetch-engine", "hist_file": ".hist/fetch-engine",
"read_only": false "read_only": false
}, },
{ {
"command_prepare": "ENV=development bun src/index", "command_prepare": "ENV=development bun src/index",
"path": "./apps/delete-engine", "path": "apps/delete-engine",
"hist_file": "./.hist/delete-engine", "hist_file": ".hist/delete-engine",
"read_only": false "read_only": false
} }
] ]
@@ -107,22 +107,22 @@
"vsplit": [ "vsplit": [
{ {
"command_prepare": "pnpm run dev", "command_prepare": "pnpm run dev",
"path": "./apps/dashboard", "path": "apps/dashboard",
"hist_file": "./.hist/dashboard", "hist_file": ".hist/dashboard",
"read_only": false "read_only": false
}, },
{ {
"hsplit": [ "hsplit": [
{ {
"command_prepare": "ENV=development bun src/index", "command_prepare": "ENV=development bun src/index",
"path": "./apps/interactions", "path": "apps/interactions",
"hist_file": "./.hist/interactions", "hist_file": ".hist/interactions",
"read_only": false "read_only": false
}, },
{ {
"command_prepare": "ENV=development bun src/index", "command_prepare": "ENV=development bun src/index",
"path": "./apps/api", "path": "apps/api",
"hist_file": "./.hist/api", "hist_file": ".hist/api",
"read_only": false "read_only": false
} }
] ]
@@ -134,33 +134,33 @@
{ {
"name": "util", "name": "util",
"path": ".", "path": ".",
"hist_file": "./.hist/util" "hist_file": ".hist/util"
}, },
{ {
"name": "cloc", "name": "cloc",
"path": ".", "path": ".",
"read_only": true, "read_only": true,
"hist_file": "./.hist/cloc", "hist_file": ".hist/cloc",
"command_run": "./scripts/countLines" "command_run": "scripts/countLines"
}, },
{ {
"name": "git", "name": "git",
"path": ".", "path": ".",
"hist_file": "./.hist/git", "hist_file": ".hist/git",
"command_run": "git status" "command_run": "git status"
}, },
{ {
"name": "prod", "name": "prod",
"path": ".", "path": ".",
"read_only": true, "read_only": true,
"hist_file": "./.hist/prod", "hist_file": ".hist/prod",
"command_prepare": "ssh node-worker-01.funkloch.net" "command_prepare": "ssh node-worker-01.funkloch.net"
}, },
{ {
"name": "caddy", "name": "caddy",
"path": ".", "path": ".",
"read_only": true, "read_only": true,
"hist_file": "./.hist/caddy", "hist_file": ".hist/caddy",
"command_prepare": "scripts/caddy" "command_prepare": "scripts/caddy"
} }
] ]