21 lines
242 B
Nix
21 lines
242 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
nixvim,
|
|
...
|
|
}:
|
|
{
|
|
programs.nixvim = {
|
|
plugins = {
|
|
lualine = {
|
|
enable = false;
|
|
settings = {
|
|
options = {
|
|
theme = "horizon";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|