Files
dotFiles/home-modules/nvim.nix
Kulvir Singh c5cb34ac1c batman nix
2025-01-06 23:24:42 +05:30

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;
};
};
}