Skip to content

Commit

Permalink
fix(version): don't use version for schemastore and nvim-cmp. Last ve…
Browse files Browse the repository at this point in the history
…rsion is too old
  • Loading branch information
folke committed Jan 16, 2023
1 parent 5b8935b commit 3d498ee
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions lua/lazyvim/plugins/coding.lua
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ return {
-- auto completion
{
"hrsh7th/nvim-cmp",
version = false, -- last release is way too old
event = "InsertEnter",
dependencies = {
"hrsh7th/cmp-nvim-lsp",
Expand Down
5 changes: 4 additions & 1 deletion lua/lazyvim/plugins/extras/lang/json.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ return {
-- correctly setup lspconfig
{
"neovim/nvim-lspconfig",
dependencies = { "b0o/SchemaStore.nvim" },
dependencies = {
"b0o/SchemaStore.nvim",
version = false, -- last release is way too old
},
opts = {
-- make sure mason installs the server
servers = {
Expand Down

0 comments on commit 3d498ee

Please sign in to comment.