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

1
.gitignore vendored
View File

@@ -1,2 +1,3 @@
hypr/monitors.conf
nvim/lazy-lock.json
**/.DS_Store

View File

@@ -1,4 +1,4 @@
require("config.lazy")
vim.cmd('colorscheme koehler')
vim.cmd('colorscheme tokyodark')

View File

@@ -1,3 +1,23 @@
local function make_transparent()
local groups = {
"Normal","NormalNC","NormalFloat","FloatBorder",
"SignColumn","EndOfBuffer","LineNr","CursorLineNr",
"StatusLine","MsgArea","WinSeparator",
-- common plugin groups:
"TelescopeNormal","TelescopeBorder",
"NvimTreeNormal","NvimTreeNormalNC",
"NeoTreeNormal","NeoTreeNormalNC",
}
for _, g in ipairs(groups) do
pcall(vim.api.nvim_set_hl, 0, g, { bg = "NONE" })
end
end
vim.api.nvim_create_autocmd({ "ColorScheme", "VimEnter" }, {
callback = make_transparent,
desc = "Force transparent background after any colorscheme loads",
})
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then
local lazyrepo = "https://github.com/folke/lazy.nvim.git"

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,
},
}

View File

@@ -1,8 +1,4 @@
return {
{
"xiyaowong/transparent.nvim",
lazy = false,
},
{
"sphamba/smear-cursor.nvim",
opts = {},