update plugins more
This commit is contained in:
@@ -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,
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user