diff --git a/internal/util/config.go b/internal/util/config.go index b71bd94a..f0615ee4 100644 --- a/internal/util/config.go +++ b/internal/util/config.go @@ -41,7 +41,8 @@ var DefaultConfig = HelmlsConfiguration{ } type YamllsSchemaStoreSettings struct { - Enable bool `json:"enable"` + Enable bool `json:"enable"` + Url string `json:"url"` } type YamllsSettings struct { @@ -57,5 +58,6 @@ var DefaultYamllsSettings = YamllsSettings{ Hover: true, YamllsSchemaStoreSettings: YamllsSchemaStoreSettings{ Enable: true, + Url: "https://www.schemastore.org/api/json/catalog.json", }, }