mirror of
https://github.com/softinio/nix-config.git
synced 2025-10-19 11:26:40 -07:00
22 lines
286 B
Nix
22 lines
286 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./autocommands.nix
|
|
./completion.nix
|
|
./keymappings.nix
|
|
./options.nix
|
|
./plugins
|
|
];
|
|
|
|
programs.nixvim = {
|
|
enable = true;
|
|
|
|
defaultEditor = true;
|
|
|
|
nixpkgs.useGlobalPackages = true;
|
|
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
};
|
|
}
|