Removed loop from plugins initialization

This commit is contained in:
2024-08-24 22:27:48 +04:00
parent 97f9bf335b
commit 7aa7487b10
2 changed files with 5 additions and 5 deletions

View File

@@ -5,6 +5,11 @@ return {
"hrsh7th/cmp-nvim-lsp", "hrsh7th/cmp-nvim-lsp",
{ "antosha417/nvim-lsp-file-operations", config = true }, { "antosha417/nvim-lsp-file-operations", config = true },
{ "folke/neodev.nvim", opts = {} }, { "folke/neodev.nvim", opts = {} },
{
"pmizio/typescript-tools.nvim",
dependencies = { "nvim-lua/plenary.nvim" },
opts = {},
},
}, },
config = function() config = function()
local lspconfig = require("lspconfig") local lspconfig = require("lspconfig")

View File

@@ -1,5 +0,0 @@
return {
"pmizio/typescript-tools.nvim",
dependencies = { "nvim-lua/plenary.nvim", "neovim/nvim-lspconfig" },
opts = {},
}