1 ---@type LazyPluginSpec
5 opts = { colorscheme = "onenord" },
6 dependencies = { "onenord.nvim" },
9 -- this meta plugin can be used to install all colorschemes to test with telescope
10 name = "colorschemes",
15 -- requires too much configuration to make look good
16 "rmehri01/onenord.nvim",
17 opts = function(_, opts)
18 local colors = require("onenord.colors").load()
19 opts = vim.tbl_extend("force", opts, {
21 ["@parameter"] = { fg = colors.fg },
22 ["@namespace"] = { fg = colors.fg },
23 ["@type"] = { fg = colors.fg },
24 ["@variable.builtin"] = { fg = colors.fg },
30 { "folke/tokyonight.nvim" },
36 -- https://github.com/catppuccin/nvim/discussions/323#discussioncomment-5760383
38 rosewater = "#BF616A",
69 "shaunsingh/nord.nvim",
72 vim.g.nord_contrats = true
73 vim.g.nord_borders = true
74 vim.g.nord_bold = false
75 vim.g.nord_uniform_diff_background = false
76 vim.g.nord_disable_background = false
79 -- conflicts with above
80 -- { "gbprod/nord.nvim"},