29 lines
556 B
Lua
29 lines
556 B
Lua
--[[ Future slint community pack?
|
|
-- TODO: add ensure installed
|
|
--]]
|
|
|
|
---@type LazySpec
|
|
return {
|
|
{
|
|
"AstroNvim/astrocore",
|
|
optional = true,
|
|
---@type AstroCoreOpts
|
|
opts = {
|
|
filetypes = {
|
|
extension = {
|
|
slint = "slint",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
"AstroNvim/astrolsp",
|
|
optional = true,
|
|
---@type AstroLSPOpts
|
|
opts = {
|
|
---@diagnostic disable: missing-fields
|
|
config = {},
|
|
},
|
|
},
|
|
}
|