meml0rz 61936d664c kekl
2024-11-12 23:55:45 +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;
}
];
};
};
};
}