3 changed files with 27 additions and 10 deletions
@ -1,13 +1,28 @@ |
|||||||
return { |
-- return { |
||||||
-- Install the colorscheme plugin |
-- -- Install the colorscheme plugin |
||||||
-- { "catppuccin/nvim", name = "catppuccin", priority = 1000 }, |
-- -- { "catppuccin/nvim", name = "catppuccin", priority = 1000 }, |
||||||
{ "Shatur/neovim-ayu" }, |
-- { "Shatur/neovim-ayu" }, |
||||||
|
-- |
||||||
|
-- -- Configure LazyVim to use it |
||||||
|
-- { |
||||||
|
-- "LazyVim/LazyVim", |
||||||
|
-- opts = { |
||||||
|
-- colorscheme = "ayu-mirage", -- Change this to your desired theme |
||||||
|
-- }, |
||||||
|
-- }, |
||||||
|
-- } |
||||||
|
|
||||||
-- Configure LazyVim to use it |
return { |
||||||
{ |
{ |
||||||
"LazyVim/LazyVim", |
"chodak166/nvim-hybrid-theme", |
||||||
opts = { |
name = "hybrid-theme", |
||||||
colorscheme = "ayu-mirage", -- Change this to your desired theme |
lazy = false, |
||||||
}, |
priority = 1000, |
||||||
|
config = function() |
||||||
|
require("hybrid-theme").setup({ |
||||||
|
background_variant = "semi_flat", |
||||||
|
}) |
||||||
|
require("hybrid-theme").colorscheme() |
||||||
|
end, |
||||||
}, |
}, |
||||||
} |
} |
||||||
|
|||||||
Loading…
Reference in new issue