17 lines
250 B
Nix
17 lines
250 B
Nix
{pkgs, ...}: {
|
|
home.file = {
|
|
".config/nvim" = {
|
|
recursive = true;
|
|
source = "${pkgs.lilj-nvim-config}";
|
|
};
|
|
};
|
|
|
|
programs = {
|
|
neovim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
vimAlias = true;
|
|
};
|
|
};
|
|
}
|