mirror of https://github.com/LazyVim/starter
40 lines
735 B
Lua
40 lines
735 B
Lua
return {
|
|
-- Overall
|
|
{
|
|
"Zeioth/compiler.nvim",
|
|
lazy = true,
|
|
cmd = { "CompilerOpen", "CompilerToggleResults", "CompilerRedo" },
|
|
dependencies = {
|
|
"stevearc/overseer.nvim",
|
|
},
|
|
opts = {},
|
|
},
|
|
{
|
|
"stevearc/overseer.nvim",
|
|
lazy = true,
|
|
cmd = { "CompilerOpen", "CompilerToggleResults", "CompilerRedo" },
|
|
opts = {
|
|
task_list = {
|
|
direction = "bottom",
|
|
min_height = 25,
|
|
max_height = 25,
|
|
default_detail = 1,
|
|
},
|
|
},
|
|
},
|
|
-- TS / JS
|
|
{
|
|
"dmmulroy/tsc.nvim",
|
|
lazy = true,
|
|
cmd = "TSC",
|
|
opts = {
|
|
use_trouble_qflist = true,
|
|
},
|
|
},
|
|
{
|
|
"dmmulroy/ts-error-translator.nvim",
|
|
lazy = true,
|
|
ft = { "ts", "tsx" },
|
|
},
|
|
}
|