Files
nix-config/home-manager/nvim.nix
2023-12-12 12:18:24 +01:00

24 lines
446 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; [
rnix-lsp
gcc
ripgrep
fd
cmake
nodePackages.pyright
nodePackages.eslint
ccls
];
};
}