Updates config for jrnl, nvim and wezterm

This commit is contained in:
Dennis Schoepf 2025-04-02 11:02:59 +02:00
parent f772beb505
commit e832bf57a3
7 changed files with 41 additions and 35 deletions

View file

@ -18,38 +18,6 @@ wezterm.on("gui-startup", function(cmd)
args = args,
})
-- W: dnsc-v2
local dnsc_v2_root = helpers.project_dir() .. "/dnsc-v2"
local _, dnsc_v2_root_pane, _ = mux.spawn_window({
workspace = "dnsc-v2",
cwd = dnsc_v2_root,
args = args,
})
local _ = dnsc_v2_root_pane:split({
direction = "Left",
size = 0.7,
cwd = dnsc_v2_root,
})
-- dnsc_v2_root_pane:send_text("npm run dev\n")
-- W: freed
local freed_root = helpers.project_dir() .. "/freed"
local _, freed_root_pane, _ = mux.spawn_window({
workspace = "freed",
cwd = freed_root,
args = args,
})
local _ = freed_root_pane:split({
direction = "Left",
size = 0.7,
cwd = freed_root,
})
-- freed_root_pane:send_text("air\n")
mux.set_active_workspace("dennis")
end)