11 lines
119 B
Nix
11 lines
119 B
Nix
{ config, pkgs, nixvim, ... }:
|
|
{
|
|
programs.nixvim = {
|
|
plugins = {
|
|
lualine = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|