return function(use) use("folke/tokyonight.nvim") -- formatting & linting use("jose-elias-alvarez/null-ls.nvim") -- use("jayp0521/mason-null-ls.nvim") use({ "kylechui/nvim-surround", tag = "*", -- Use for stability; omit to use `main` branch for the latest features config = function() require("nvim-surround").setup({ -- Configuration here, or leave empty to use defaults }) end, }) use({ "folke/trouble.nvim", requires = "nvim-tree/nvim-web-devicons", config = function() require("trouble").setup({ -- your configuration comes here -- or leave it empty to use the default settings -- refer to the configuration section below }) end, }) end