Skip to content

Commit e2f81c8

Browse files
vdesjardinsnix-infra-bot
authored andcommitted
plugins/schemastore: remove table wrapping
Signed-off-by: Vincent Desjardins <[email protected]>
1 parent 30f3a32 commit e2f81c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/by-name/schemastore/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ helpers.vim-plugin.mkVimPlugin {
136136
plugins.lsp.servers = {
137137
jsonls.settings = mkIf cfg.json.enable {
138138
schemas.__raw = ''
139-
require('schemastore').json.schemas({${helpers.toLuaObject cfg.json.settings}})
139+
require('schemastore').json.schemas(${helpers.toLuaObject cfg.json.settings})
140140
'';
141141

142142
# The plugin recommends to enable this option in its README.
@@ -155,7 +155,7 @@ helpers.vim-plugin.mkVimPlugin {
155155
};
156156

157157
schemas.__raw = ''
158-
require('schemastore').yaml.schemas({${helpers.toLuaObject cfg.yaml.settings}})
158+
require('schemastore').yaml.schemas(${helpers.toLuaObject cfg.yaml.settings})
159159
'';
160160
};
161161
};

0 commit comments

Comments
 (0)