nixos-config/modules/editors/nvim/config/default.nix

17 lines
299 B
Nix
Raw Normal View History

2024-04-20 19:07:07 +02:00
{ nvim, ... }:
{
# Import all your configuration modules here
programs.nixvim = {
enable = true;
colorschemes.gruvbox.enable = true;
imports = [
./bufferline.nix
./plugins.nix
./options.nix
./keymaps.nix
./highlight.nix
];
};
}