feat(nixvim): add noice and lualine for status and cmd line

This commit is contained in:
Mohammad Rafiq 2025-03-07 17:22:58 +08:00
parent 474d30652a
commit 3a63bec55b
3 changed files with 13 additions and 1 deletions

View file

@ -0,0 +1,5 @@
{
programs.nixvim.plugins.lualine = {
enable = true;
};
}

View file

@ -0,0 +1,5 @@
{
programs.nixvim.plugins.noice = {
enable = true;
};
}

View file

@ -1,7 +1,9 @@
{ inputs, ... }: {
imports = [
inputs.nixvim.homeManagerModules.nixvim
./nixvim-plugins/nvim-tree.nix
./nixvim-plugins/nvim-tree.nix # filetree
./nixvim-plugins/noice.nix # custom CMDLINE
./nixvim-plugins/lualine.nix # custom statusline
];
programs.nixvim = {
enable = true;