update plugins more

This commit is contained in:
2025-10-18 02:46:10 -03:00
parent ae9da209e1
commit c4bbee1f24
5 changed files with 62 additions and 19 deletions

View File

@@ -1,16 +1,42 @@
function theme(repo, opts)
opts = opts or {}
local theme = {
repo,
lazy = false,
}
return theme
end
return {
theme("nyoom-engineering/oxocarbon.nvim"),
theme("tiagovla/tokyodark.nvim"),
theme("kdheepak/monochrome.nvim"),
{
"nyoom-engineering/oxocarbon.nvim",
lazy = false,
priority = 1000,
config = function()
end,
},
{
"tiagovla/tokyodark.nvim",
lazy = false,
priority = 1000,
config = function()
end,
},
{
"kdheepak/monochrome.nvim",
lazy = false,
priority = 1000,
config = function()
end,
},
{
'jesseleite/nvim-noirbuddy',
dependencies = {
{ 'tjdevries/colorbuddy.nvim' }
},
lazy = false,
priority = 1000,
setup = function()
require('noirbuddy').setup {
colors = {
primary = '#6EE2FF',
secondary = '#267FB5',
},
}
end,
},
}