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

@ -3,7 +3,7 @@
...
}:
{
flake.modules.nixos.neovim =
flake.modules.nixos.neovim =
{ pkgs, ... }:
{
home-manager.sharedModules = [
@ -19,24 +19,27 @@
];
};
flake.modules.homeManager.neovim = { pkgs, ... }: {
imports = [
inputs.nixvim.homeModules.nixvim
./_colorscheme.nix
./_completion.nix
./_editing.nix
./_formatter.nix
./_keybindings.nix
./_lsp.nix
./_options.nix
./_picker.nix
];
programs.nixvim = {
enable = true;
defaultEditor = true;
package = pkgs.neovim-unwrapped;
vimAlias = true;
vimdiffAlias = true;
flake.modules.homeManager.neovim =
{ pkgs, ... }:
{
imports = [
inputs.nixvim.homeModules.nixvim
./_colorscheme.nix
./_completion.nix
./_editing.nix
./_formatter.nix
./_keybindings.nix
./_lsp.nix
./_options.nix
./_picker.nix
./_statusline.nix
];
programs.nixvim = {
enable = true;
defaultEditor = true;
package = pkgs.neovim-unwrapped;
vimAlias = true;
vimdiffAlias = true;
};
};
};
}