20 lines
339 B
Nix
20 lines
339 B
Nix
|
{
|
||
|
pkgs,
|
||
|
config,
|
||
|
...
|
||
|
}: {
|
||
|
programs.neovim = {
|
||
|
enable = true;
|
||
|
defaultEditor = true;
|
||
|
viAlias = true;
|
||
|
vimAlias = true;
|
||
|
vimdiffAlias = true;
|
||
|
};
|
||
|
|
||
|
home.file.".config/nvim" = {
|
||
|
source = ./configs;
|
||
|
# copy the scripts directory recursively
|
||
|
recursive = true;
|
||
|
};
|
||
|
}
|