24 lines
373 B
Nix
24 lines
373 B
Nix
{inputs, ...}: {
|
|
imports = [
|
|
inputs.nixvim.homeManagerModules.nixvim
|
|
./autocommands.nix
|
|
./completion.nix
|
|
./keymappings.nix
|
|
./options.nix
|
|
./plugins
|
|
./todo.nix
|
|
];
|
|
|
|
home.shellAliases.v = "nvim";
|
|
|
|
programs.nixvim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
|
|
luaLoader.enable = true;
|
|
};
|
|
}
|