Files
nix-config/home-manager/nvim.nix
2024-03-17 11:34:41 +01:00

23 lines
429 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
nodePackages.pyright
nodePackages.eslint
ccls
];
};
}