mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
plugins/lsp/tinymist: fix type in settings declaration
Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
parent
2c003e9319
commit
b35e6830e0
1 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# https://github.com/Myriad-Dreamin/tinymist/blob/main/editors/neovim/Configuration.md
|
||||
let
|
||||
inherit (lib.nixvim) defaultNullOpts mkNullOrOption mkNullOrStr;
|
||||
inherit (lib.nixvim) defaultNullOpts mkNullOrStr;
|
||||
inherit (lib) types;
|
||||
in
|
||||
{
|
||||
|
|
@ -104,7 +104,7 @@ in
|
|||
'';
|
||||
|
||||
completion = {
|
||||
triggerOnSnippetPlaceholders = mkNullOrOption types.bool ''
|
||||
triggerOnSnippetPlaceholders = defaultNullOpts.mkBool false ''
|
||||
Whether to trigger completions on arguments (placeholders) of snippets.
|
||||
|
||||
For example, `box` will be completed to `box(|)`, and server will request the editor (lsp
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue