feat: add plugins to nvf

This commit is contained in:
Mohammad Rafiq 2025-03-11 22:41:13 +08:00
parent 03e35377eb
commit b0b503da2a
8 changed files with 184 additions and 18 deletions

View file

@ -1,6 +1,11 @@
{ inputs, ... }: {
imports = [
inputs.nvf.homeManagerModules.default
./nvf/lualine.nix
./nvf/noice.nix
./nvf/nvim-tree.nix
./nvf/languages/nix.nix
./nvf/conform-nvim.nix
];
programs.nvf = {
@ -42,6 +47,11 @@
silent = true;
}
];
languages = {
enableFormat = true;
enableLSP = true;
enableTreesitter = true;
};
};
};
}