]> git.rmz.io Git - dotfiles.git/blob - nvim/lua/plugins/colorscheme.lua
nvim: switch to nord colorscheme
[dotfiles.git] / nvim / lua / plugins / colorscheme.lua
1 ---@type LazyPluginSpec
2 return {
3 { "LazyVim", opts = { colorscheme = "nord" } },
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 { "shaunsingh/nord.nvim"},
11 -- conflicts with above
12 -- { "gbprod/nord.nvim"},
13 {
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, {
19 custom_highlights = {
20 ["@parameter"] = { fg = colors.fg },
21 ["@namespace"] = { fg = colors.fg },
22 ["@type"] = { fg = colors.fg },
23 ["@variable.builtin"] = { fg = colors.fg },
24 },
25 })
26 return opts
27 end,
28 },
29 { "folke/tokyonight.nvim" },
30 },
31 },
32 }