From 94fa51d8b7d734feef1b8db5bb2a8c67ddc5cd12 Mon Sep 17 00:00:00 2001 From: Max Koon <22125083+k2on@users.noreply.github.com> Date: Sun, 16 Aug 2026 20:28:47 -0500 Subject: [PATCH] modules/lsp: updated `inlayHints` option description --- modules/lsp/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/lsp/default.nix b/modules/lsp/default.nix index 5ffbafc1..0ec2a7ef 100644 --- a/modules/lsp/default.nix +++ b/modules/lsp/default.nix @@ -13,7 +13,13 @@ in }; inlayHints = { - enable = lib.mkEnableOption "inlay hints globally"; + enable = lib.mkEnableOption null // { + description = '' + Whether to enable inlay hints globally. + + See [`:h lsp-inlay_hint`](https://neovim.io/doc/user/lsp/#lsp-inlay_hint) + ''; + }; }; codelens = { enable = lib.mkEnableOption null // {