17 lines
299 B
Nix
17 lines
299 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
|
|
];
|
|
};
|
|
}
|