local plugins = { { "nvim-treesitter/nvim-treesitter", build = ":TSUpdate", }, { "windwp/nvim-autopairs", event = "InsertEnter", config = true, -- use opts = {} for passing setup options -- this is equalent to setup({}) function opts = {}, }, { "nvim-telescope/telescope.nvim", tag = "0.1.5", opts = { extensions = { fzf = { fuzzy = true, -- false will only do exact matching override_generic_sorter = true, -- override the generic sorter override_file_sorter = true, -- override the file sorter case_mode = "ignore_case", -- or "ignore_case" or "respect_case" or smart_case -- the default case_mode is "smart_case" }, }, }, dependencies = { "nvim-lua/plenary.nvim" }, }, { "numToStr/Comment.nvim", opts = { -- add any options here }, lazy = false, }, { "sadan4/eregex.vim", }, { "lambdalisue/suda.vim", }, { "folke/tokyonight.nvim", lazy = false, priority = 1000, opts = {}, }, }; local opts = {}; require"lazy".setup(plugins, opts)