mirror of
https://github.com/softinio/nix-config.git
synced 2025-10-18 11:06:41 -07:00
21 lines
270 B
Nix
21 lines
270 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./options.nix
|
|
./keymappings.nix
|
|
./completion.nix
|
|
./_plugins
|
|
];
|
|
|
|
programs.nixvim = {
|
|
enable = true;
|
|
|
|
defaultEditor = true;
|
|
|
|
nixpkgs.useGlobalPackages = true;
|
|
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
};
|
|
}
|