2
0
mirror of https://github.com/webgefrickel/dotfiles synced 2024-11-17 09:25:52 +00:00
This commit is contained in:
Steffen Rademacker 2023-10-02 13:58:32 +02:00
parent 27c2021142
commit 9b5aee7684
3 changed files with 22 additions and 0 deletions

View File

@ -147,6 +147,28 @@ end)
wezterm.on('gui-startup', function()
local tab, pane, window = mux.spawn_window({})
window:gui_window():maximize()
-- Set a workspace for coding on a current project
-- Top pane is for the editor, bottom pane is for the build tool
local homeDir = wezterm.home_dir
-- local tab, build_pane, window = mux.spawn_window({
-- workspace = 'default',
-- cwd = homeDir
-- })
--
-- local editor_pane = build_pane:split({
-- direction = 'Right',
-- size = 0.5,
-- cwd = homeDir,
-- })
--
-- build_pane:send_text 'ls -al\n'
--
-- local tab, pane, window = mux.spawn_window {
-- workspace = 'dev',
-- }
--
-- mux.set_active_workspace 'default'
end)
return config