Compare commits

...

5 Commits

Author SHA1 Message Date
0095124356 nvim updates 2025-12-13 02:30:47 +00:00
066015f522 Neovim updates 2025-12-13 02:08:20 +00:00
2d95dfed25 Improved cleanup for start-lab-session command 2025-12-13 02:08:15 +00:00
182f7bead7 submodule pulls 2025-12-13 00:51:21 +00:00
c7818c109f Added start-lab-session command to shell config 2025-12-13 00:51:11 +00:00
8 changed files with 16 additions and 7 deletions

View File

@@ -48,3 +48,12 @@ export def 'install-default-plugins' [] {
nu_plugin_query
] | each { cargo install $in --locked } | ignore
}
export def 'start-lab-session' [
--session-name (-s): string = "lab"
] {
let task_id = pueue add -p ghostty -e zellij attach --index 0 -c $session_name
zellij attach --index 0 -c $session_name
pueue kill $task_id
pueue rm $task_id
}