diff options
author | Abouzar Parvan <[email protected]> | 2022-02-03 08:55:25 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-02-03 11:25:25 +0330 |
commit | 1436d9090a31759e8ce1f7d184038230235a84da (patch) | |
tree | 878745d38a5bb2e8c09ee13a60e2ffc037e01e3d /lua/lvim/plugins.lua | |
parent | ab1255e10d2cee652195d7fa9081d80ce1db9875 (diff) |
feat: use schemastore.nvim to provide extended json schema support (#2239)
Diffstat (limited to 'lua/lvim/plugins.lua')
-rw-r--r-- | lua/lvim/plugins.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lua/lvim/plugins.lua b/lua/lvim/plugins.lua index 050bd00b..b5cfab63 100644 --- a/lua/lvim/plugins.lua +++ b/lua/lvim/plugins.lua @@ -29,6 +29,7 @@ local commit = { plenary = "e86dc9b11241ff69ece50c15a5cdd49d20d4c27c", popup = "b7404d35d5d3548a82149238289fa71f7f6de4ac", project = "cef52b8da07648b750d7f1e8fb93f12cb9482988", + schemastore = "058575f0bd94b115604bef9c4c48c5d02e21ffef", structlog = "6f1403a192791ff1fa7ac845a73de9e860f781f1", telescope = "f262e7d56d37625613c5de0df5a933cccacf13c5", telescope_fzf_native = "b8662b076175e75e6497c59f3e2799b879d7b954", @@ -272,4 +273,10 @@ return { end, disable = not lvim.builtin.terminal.active, }, + + -- SchemaStore + { + "b0o/schemastore.nvim", + commit = commit.schemastore, + }, } |