diff --git a/lua/zenbones/shipwright/runners/windows_terminal.lua b/lua/zenbones/shipwright/runners/windows_terminal.lua index 8fa5e62..a7cd844 100644 --- a/lua/zenbones/shipwright/runners/windows_terminal.lua +++ b/lua/zenbones/shipwright/runners/windows_terminal.lua @@ -1,15 +1,9 @@ ---@diagnostic disable: undefined-global -- selene: allow(undefined_variable) -run( - { specs, p, term }, - transform.colorscheme_to_term_colors, - function(colors) - return vim.tbl_extend("keep", colors, { - name = name, - }) - end, - contrib.windows_terminal, - { overwrite, string.format("extras/windows_terminal/%s.json", name) } -) +run({ specs, p, term }, transform.colorscheme_to_term_colors, function(colors) + return vim.tbl_extend("keep", colors, { + name = name, + }) +end, contrib.windows_terminal, { overwrite, string.format("extras/windows_terminal/%s.json", name) }) -- selene: deny(undefined_variable) ---@diagnostic enable: undefined-global