3 changed files with 27 additions and 10 deletions
@ -1,13 +1,28 @@
|
||||
return { |
||||
-- Install the colorscheme plugin |
||||
-- { "catppuccin/nvim", name = "catppuccin", priority = 1000 }, |
||||
{ "Shatur/neovim-ayu" }, |
||||
-- return { |
||||
-- -- Install the colorscheme plugin |
||||
-- -- { "catppuccin/nvim", name = "catppuccin", priority = 1000 }, |
||||
-- { "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", |
||||
opts = { |
||||
colorscheme = "ayu-mirage", -- Change this to your desired theme |
||||
}, |
||||
"chodak166/nvim-hybrid-theme", |
||||
name = "hybrid-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