16 lines
279 B
Nix
16 lines
279 B
Nix
{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
|
|
];
|
|
};
|
|
}
|