meml0rz f923fce863 kekl
2024-11-13 00:02:10 +01:00

44 lines
2.4 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;
}
];
};
};
};
}