tmux-mate/development.dhall
2020-04-09 18:22:04 +01:00

16 lines
479 B
Plaintext

{ sessionTitle = "tmux-mate"
, sessionWindows =
[ { windowTitle = "development"
, windowPanes =
[ { paneCommand = "vim ." }
, { paneCommand = "stack test --file-watch" }
, { paneCommand = "ghcid -c 'stack repl'" }
, { paneCommand = "ghcid -c 'stack repl test/Spec.hs'" }
, { paneCommand = "watch --color -n 2 git -c color.status=always status" }
, { paneCommand = "$SHELL" }
]
, windowArrangement = "main-vertical"
}
]
}