Compare commits

..

No commits in common. "c9a97d9e243002aef4b1cc2a4f241eaec7e24fa5" and "2efad106103eb3616efb0093540a3f39a707852f" have entirely different histories.

2 changed files with 51 additions and 13 deletions

View File

@ -1,13 +0,0 @@
return {
{
"shaunsingh/nord.nvim",
lazy = false,
priority = 1000,
},
{
"LazyVim/LazyVim",
opts = {
colorscheme = "nord",
},
},
}

View File

@ -0,0 +1,51 @@
return {
-- gruvbox
{
"ellisonleao/gruvbox.nvim",
lazy = true,
opts = { contrast = "hard" },
},
-- kanagawa
{
"rebelot/kanagawa.nvim",
lazy = true,
},
{{- if eq .chezmoi.os "openbsd" }}
{
"gbprod/nord.nvim",
lazy = false,
priority = 1000,
opts = {
styles = {
comments = { italic = true },
keywords = { bold = true },
functions = { bold = true },
variables = {},
},
},
config = function()
vim.cmd([[colorscheme nord]])
end,
},
{{- else }}
{
"gbprod/nord.nvim",
lazy = false,
priority = 1000,
opts = {
styles = {
comments = { italic = true },
keywords = { bold = true },
functions = { bold = true },
variables = {},
},
},
},
{
"LazyVim/LazyVim",
opts = {
colorscheme = "nord",
},
},
{{- end }}
}