feat(nixvim): add noice and lualine for status and cmd line
This commit is contained in:
parent
474d30652a
commit
3a63bec55b
3 changed files with 13 additions and 1 deletions
5
users/modules/programs/nixvim-plugins/lualine.nix
Normal file
5
users/modules/programs/nixvim-plugins/lualine.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
programs.nixvim.plugins.lualine = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
5
users/modules/programs/nixvim-plugins/noice.nix
Normal file
5
users/modules/programs/nixvim-plugins/noice.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
programs.nixvim.plugins.noice = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue