Files
nix-config/home-manager/nvim.nix
2025-10-30 21:59:31 +01:00

30 lines
412 B
Nix

{
config,
pkgs,
inputs,
...
}:
{
home.file.".config/nvim" = {
enable = true;
recursive = true;
source = ../.config/nvim;
target = ".config/nvim";
};
programs.neovim = {
enable = true;
defaultEditor = true;
extraPackages = with pkgs; [
gcc
ripgrep
fd
cmake
pyright
nodePackages.eslint
ccls
nodejs_22
go
];
};
}