nvim: do not enable inlay hints by default

This commit is contained in:
Daniel Lundin 2024-12-31 14:32:15 +01:00
parent be8780d846
commit c749caf2e9
Signed by: dln
SSH key fingerprint: SHA256:dQy1Xj3UiqJYpKR5ggQ2bxgz4jCH8IF+k3AB8o0kmdI

View file

@ -90,14 +90,15 @@
src = pkgs.fetchFromGitHub { src = pkgs.fetchFromGitHub {
owner = "MysticalDevil"; owner = "MysticalDevil";
repo = "inlay-hints.nvim"; repo = "inlay-hints.nvim";
rev = "af84dee42cd118af6d592b06c1c0e45d6432a6c0"; # 2024-08-23 rev = "3259b54f3b954b4d8260f3ee49ceabe978ea5636";
hash = "sha256-DZVtFAUK9c8GInp+JdCQ1BKe0dkAheHKI67oxdMmA24="; hash = "sha256-99KCGoPowa4PA1jkCm4ZbbgrFl84NWnKQMgkfy8KS5E=";
}; };
}; };
type = "lua"; type = "lua";
config = '' config = ''
require('inlay-hints').setup() require('inlay-hints').setup {
require("inlay-hints.utils").enable_inlay_hints() autocmd = { enable = false },
}
''; '';
} }