Files
home-manager/programs/nvim.nix
2026-02-11 11:54:43 +01:00

13 lines
145 B
Nix

{ pkgs, ... }:
{
programs.neovim = {
enable = true;
# Plugins installed via Nix
plugins = with pkgs.vimPlugins; [
];
};
}