diff --git a/lua/plugins/example.lua b/lua/plugins/example.lua index 6859c0eab..522121cf9 100644 --- a/lua/plugins/example.lua +++ b/lua/plugins/example.lua @@ -132,8 +132,11 @@ return { }, -- for typescript, LazyVim also includes extra specs to properly setup lspconfig, - -- treesitter, mason and typescript.nvim. So instead of the above, you can use: - { import = "lazyvim.plugins.extras.lang.typescript" }, + -- treesitter, mason and typescript.nvim. So instead of the above, you can use + -- { import = "lazyvim.plugins.extras.lang.typescript" } in config/lazy.lua or + -- installing Extras with :LazyExtras. Do not import Extras from plugins/ folder + -- as it might lead to unintended consequences for configuration. See + -- https://github.com/LazyVim/LazyVim/issues/2567 -- add more treesitter parsers { @@ -192,12 +195,6 @@ return { end, }, - -- use mini.starter instead of alpha - { import = "lazyvim.plugins.extras.ui.mini-starter" }, - - -- add jsonls and schemastore packages, and setup treesitter for json, json5 and jsonc - { import = "lazyvim.plugins.extras.lang.json" }, - -- add any tools you want to have installed below { "williamboman/mason.nvim",