Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -304,10 +304,19 @@ local defaults = {
---@class sidekick.cli.Mux
---@field backend? "tmux"|"zellij" Multiplexer backend to persist CLI sessions
mux = {
backend = "zellij",
backend = "tmux",
enabled = false,
-- terminal: new sessions will be created for each CLI tool and shown in a Neovim terminal
-- window: when run inside a terminal multiplexer, new sessions will be created in a new tab
-- split: when run inside a terminal multiplexer, new sessions will be created in a new split
-- NOTE: zellij only supports `terminal`
create = "terminal", ---@type "terminal"|"window"|"split"
split = {
vertical = true, -- vertical or horizontal split
size = 0.5, -- size of the split (0-1 for percentage)
},
},
---@type table<string, sidekick.cli.Tool.spec>
---@type table<string, sidekick.cli.Config|{}>
tools = {
aider = { cmd = { "aider" }, url = "https://github.com/Aider-AI/aider" },
amazon_q = { cmd = { "q" }, url = "https://github.com/aws/amazon-q-developer-cli" },
Expand Down
Loading