meml0rz f1c3152a46 kekl
2024-11-12 23:35:52 +01:00

36 lines
1.6 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;
}
];
};
};
};
}