nvim: do not enable inlay hints by default
This commit is contained in:
parent
be8780d846
commit
c749caf2e9
1 changed files with 5 additions and 4 deletions
|
@ -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 },
|
||||||
|
}
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue