1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00

treewide(docs): use literalLua instead of __raw in option examples

This commit is contained in:
Axel Karjalainen 2025-10-04 22:38:00 +03:00 committed by Gaétan Lepage
parent 5aae2b9fcd
commit 5ddfbdf1c2
23 changed files with 54 additions and 57 deletions

View file

@ -20,7 +20,7 @@ lib.nixvim.plugins.mkNeovimPlugin {
Whether to show notification when big file detected.
'';
size = defaultNullOpts.mkNum { __raw = "1.5 * 1024 * 1024"; } ''
size = defaultNullOpts.mkNum (lib.nixvim.literalLua "1.5 * 1024 * 1024") ''
The size at which a file is considered big.
'';