mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-25 14:01:03 +00:00
22 lines
429 B
Lua
22 lines
429 B
Lua
return {
|
|
{
|
|
"Zeioth/compiler.nvim",
|
|
cmd = { "CompilerOpen", "CompilerToggleResults", "CompilerRedo" },
|
|
dependencies = {
|
|
"stevearc/overseer.nvim",
|
|
},
|
|
opts = {},
|
|
},
|
|
{
|
|
"stevearc/overseer.nvim",
|
|
cmd = { "CompilerOpen", "CompilerToggleResults", "CompilerRedo", "OverseerRun" },
|
|
opts = {
|
|
task_list = {
|
|
direction = "bottom",
|
|
min_height = 25,
|
|
max_height = 25,
|
|
default_detail = 1,
|
|
},
|
|
},
|
|
},
|
|
}
|