OpenBSD LazyVim switch

This commit is contained in:
Jan Eitzinger 2024-11-23 11:05:53 +01:00
parent 19aba66a41
commit 8e0047f98f
Signed by: moebiusband
GPG Key ID: 2574BA29B90D6DD5
2 changed files with 13 additions and 51 deletions

View File

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

View File

@ -1,51 +0,0 @@
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 }}
}