fleshed out readme.

This commit is contained in:
Gabe Venberg 2026-03-15 14:53:24 +01:00
parent 9433f5027c
commit 46208d9102
4 changed files with 17 additions and 8 deletions

View file

@ -1,3 +1,14 @@
# Neovim module
A wrapper around nvim that includes the plugins I use day to day.
to use with home manager or nixos, pass this flake as an input, and then in your config,
```nix
imports = [
inputs.nvim-config.nixosModules.neovim
]
```
(replace `nixosModules` with `homeModules` for home manager).
Then, you can just do `wrappers.neovim.enable=true;` to enable nvim.
To enable an option, such as minimal mode (no LSPs), do `wrappers.neovim.settings.minimal = true;`.