1 ---@type LazyPluginSpec
3 { "LazyVim", opts = { colorscheme = "nord" } },
5 -- this meta plugin can be used to install all colorschemes to test with telescope
10 { "shaunsingh/nord.nvim"},
11 -- conflicts with above
12 -- { "gbprod/nord.nvim"},
14 -- requires too much configuration to make look good
15 "rmehri01/onenord.nvim",
16 opts = function(_, opts)
17 local colors = require("onenord.colors").load()
18 opts = vim.tbl_extend("force", opts, {
20 ["@parameter"] = { fg = colors.fg },
21 ["@namespace"] = { fg = colors.fg },
22 ["@type"] = { fg = colors.fg },
23 ["@variable.builtin"] = { fg = colors.fg },
29 { "folke/tokyonight.nvim" },