Warning
Forked from Lalit64
This configuration uses lazy.nvim to manage plugins.
- This is not meant to be used without nix, but I am pretty sure it works ok.
Warning
Make sure you don't have neovim or vim installed
Note
This installs an instance of neovim with all the plugins and config built
- In your
flake.nix
{
inputs = {
neovim.url = "git+ssh://git@github.com/elythh/nvim.git";
neovim.inputs.nixpkgs.follows = "nixpkgs";
}
}
- Use the home-manager module by including it in the imports like this:
imports = [
inputs.neovim.homeModules.default
{ nvim.enable = true }
];