nvim: initial config

This commit is contained in:
2024-04-20 19:07:07 +02:00
parent a667691f49
commit 1f7f453fc3
9 changed files with 114 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
{ 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
];
};
}