nvim/lua/plugins/alpha.lua
2026-02-18 14:32:37 +01:00

15 lines
405 B
Lua

return {
"goolord/alpha-nvim",
dependencies = {
'nvim-tree/nvim-web-devicons',
"nvim-lua/plenary.nvim",
},
config = function()
local theta = require("alpha.themes.theta")
theta.config.layout[1].val = math.floor(vim.fn.winheight(0) * 0.2)
theta.header.opts.hl = "Normal"
require("alpha").setup(
theta.config
)
end,
}