]> git.rmz.io Git - dotfiles.git/blob - nvim/lua/plugins/colorscheme.lua
nvim/colorscheme: default to onenord
[dotfiles.git] / nvim / lua / plugins / colorscheme.lua
1 ---@type LazyPluginSpec
2 return {
3 { "LazyVim", opts = { colorscheme = "onenord" } },
4 {
5 -- this meta plugin can be used to install all colorschemes to test with telescope
6 name = "colorschemes",
7 dir = "",
8 lazy = true,
9 dependencies = {
10 {
11 -- requires too much configuration to make look good
12 "rmehri01/onenord.nvim",
13 opts = function(_, opts)
14 local colors = require("onenord.colors").load()
15 opts = vim.tbl_extend("force", opts, {
16 custom_highlights = {
17 ["@parameter"] = { fg = colors.fg },
18 ["@namespace"] = { fg = colors.fg },
19 ["@type"] = { fg = colors.fg },
20 ["@variable.builtin"] = { fg = colors.fg },
21 },
22 })
23 return opts
24 end,
25 },
26 { "folke/tokyonight.nvim" },
27 { "shaunsingh/nord.nvim"},
28 -- conflicts with above
29 -- { "gbprod/nord.nvim"},
30 },
31 },
32 }