configures statusline

This commit is contained in:
Dennis Schoepf 2026-03-05 23:14:57 +01:00
parent d4f14279fa
commit 91c4311bb4
2 changed files with 33 additions and 21 deletions

View file

@ -0,0 +1,9 @@
{ ... }:
{
programs.nixvim.plugins.mini-statusline = {
enable = true;
settings = {
use_icons = false;
};
};
}

View file

@ -19,7 +19,9 @@
]; ];
}; };
flake.modules.homeManager.neovim = { pkgs, ... }: { flake.modules.homeManager.neovim =
{ pkgs, ... }:
{
imports = [ imports = [
inputs.nixvim.homeModules.nixvim inputs.nixvim.homeModules.nixvim
./_colorscheme.nix ./_colorscheme.nix
@ -30,6 +32,7 @@
./_lsp.nix ./_lsp.nix
./_options.nix ./_options.nix
./_picker.nix ./_picker.nix
./_statusline.nix
]; ];
programs.nixvim = { programs.nixvim = {
enable = true; enable = true;