---@type LazyPluginSpec return { { "LazyVim", opts = { colorscheme = "nord" } }, { -- this meta plugin can be used to install all colorschemes to test with telescope name = "colorschemes", dir = "", lazy = true, dependencies = { { "shaunsingh/nord.nvim"}, -- conflicts with above -- { "gbprod/nord.nvim"}, { -- requires too much configuration to make look good "rmehri01/onenord.nvim", opts = function(_, opts) local colors = require("onenord.colors").load() opts = vim.tbl_extend("force", opts, { custom_highlights = { ["@parameter"] = { fg = colors.fg }, ["@namespace"] = { fg = colors.fg }, ["@type"] = { fg = colors.fg }, ["@variable.builtin"] = { fg = colors.fg }, }, }) return opts end, }, { "folke/tokyonight.nvim" }, }, }, }