configures statusline
This commit is contained in:
parent
d4f14279fa
commit
91c4311bb4
2 changed files with 33 additions and 21 deletions
9
modules/neovim/_statusline.nix
Normal file
9
modules/neovim/_statusline.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
programs.nixvim.plugins.mini-statusline = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
use_icons = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue