Compare commits
No commits in common. "c9a97d9e243002aef4b1cc2a4f241eaec7e24fa5" and "2efad106103eb3616efb0093540a3f39a707852f" have entirely different histories.
c9a97d9e24
...
2efad10610
@ -1,13 +0,0 @@
|
|||||||
return {
|
|
||||||
{
|
|
||||||
"shaunsingh/nord.nvim",
|
|
||||||
lazy = false,
|
|
||||||
priority = 1000,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"LazyVim/LazyVim",
|
|
||||||
opts = {
|
|
||||||
colorscheme = "nord",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
51
dot_config/nvim/lua/plugins/colorscheme.lua.tmpl
Normal file
51
dot_config/nvim/lua/plugins/colorscheme.lua.tmpl
Normal 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 }}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user