meml0rz e32f338024 kekl
2024-11-13 01:15:31 +01:00

49 lines
2.0 KiB
Nix

{
config,
pkgs,
nixvim,
...
}:
{
programs.nixvim = {
plugins = {
alpha = {
enable = true;
layout = [
{
type = "padding";
val = 2;
}
{
opts = {
hl = "Type";
position = "center";
};
type = "text";
val = [
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
];
}
{
type = "padding";
val = 2;
}
];
};
};
};
}