docs: fix grammar, spelling, and text for enable options

This commit is contained in:
municorn 2023-10-09 07:58:51 -05:00 committed by Gaétan Lepage
parent 7014569cbf
commit 3fd743fe80
23 changed files with 24 additions and 24 deletions

View file

@ -19,7 +19,7 @@ This can then be passed to `pkgs.wrapNeovimUnstable` to generate a derivation th
All the options that nixvim expose end up in those three places. This is done in the `modules/output.nix` file.
The guiding principle of nixvim is too only add to the `init.lua` what the user added to the configuration. This means that we must trim out all the options that were not set.
The guiding principle of nixvim is to only add to the `init.lua` what the user added to the configuration. This means that we must trim out all the options that were not set.
This is done by making most of the options of the type `types.nullOr ....`, and not setting any option that is null.