mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-07-10 09:24:37 +02:00
fix(version): don't use version for schemastore and nvim-cmp. Last version is too old
This commit is contained in:
parent
5b8935b383
commit
3d498ee713
2 changed files with 5 additions and 1 deletions
|
@ -30,6 +30,7 @@ return {
|
||||||
-- auto completion
|
-- auto completion
|
||||||
{
|
{
|
||||||
"hrsh7th/nvim-cmp",
|
"hrsh7th/nvim-cmp",
|
||||||
|
version = false, -- last release is way too old
|
||||||
event = "InsertEnter",
|
event = "InsertEnter",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"hrsh7th/cmp-nvim-lsp",
|
"hrsh7th/cmp-nvim-lsp",
|
||||||
|
|
|
@ -11,7 +11,10 @@ return {
|
||||||
-- correctly setup lspconfig
|
-- correctly setup lspconfig
|
||||||
{
|
{
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
dependencies = { "b0o/SchemaStore.nvim" },
|
dependencies = {
|
||||||
|
"b0o/SchemaStore.nvim",
|
||||||
|
version = false, -- last release is way too old
|
||||||
|
},
|
||||||
opts = {
|
opts = {
|
||||||
-- make sure mason installs the server
|
-- make sure mason installs the server
|
||||||
servers = {
|
servers = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue