Compare commits
2 Commits
2efad10610
...
c9a97d9e24
Author | SHA1 | Date | |
---|---|---|---|
c9a97d9e24 | |||
8e0047f98f |
13
dot_config/nvim/lua/plugins/colorscheme.lua
Normal file
13
dot_config/nvim/lua/plugins/colorscheme.lua
Normal file
@ -0,0 +1,13 @@
|
||||
return {
|
||||
{
|
||||
"shaunsingh/nord.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
},
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "nord",
|
||||
},
|
||||
},
|
||||
}
|
@ -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 }}
|
||||
}
|
Loading…
Reference in New Issue
Block a user