Make bg transparent to work with tmux inactivity

This commit is contained in:
Alex Selimov 2026-07-07 10:14:19 -04:00
parent bf8360bebe
commit 846e47b931

View file

@ -13,6 +13,8 @@ return {
vim.o.background = "dark"
end
vim.cmd.colorscheme("zenwritten")
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
end,
},
@ -101,12 +103,6 @@ return {
},
},
{
"MeanderingProgrammer/render-markdown.nvim",
dependencies = { "nvim-treesitter/nvim-treesitter", "echasnovski/mini.nvim" },
opts = {},
},
{
"folke/trouble.nvim",
opts = {},