1
Fork 0
satellite/home/features/neovim/config/lua/my/plugins/themes/bluloco.lua

22 lines
389 B
Lua
Raw Normal View History

2023-12-21 16:21:14 +01:00
local H = require("my.helpers.theme")
2023-08-28 17:18:26 +02:00
local M = {
"uloco/bluloco.nvim",
lazy = false,
dependencies = { "rktjmp/lush.nvim" },
enabled = H.theme_contains("Bluloco"),
}
function M.config()
local bluloco = require("bluloco")
bluloco.setup({
2023-12-21 16:21:14 +01:00
transparent = H.theme.opacity.terminal < 1.0,
2023-08-28 17:18:26 +02:00
style = H.variant("Bluloco"),
})
vim.cmd("colorscheme bluloco")
end
return M