mirror of
https://github.com/softinio/nix-config.git
synced 2025-10-19 03:26:40 -07:00
22 lines
270 B
Nix
22 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;
|
||
|
};
|
||
|
}
|