mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-09 03:56:05 +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
|
# https://github.com/Myriad-Dreamin/tinymist/blob/main/editors/neovim/Configuration.md
|
||||||
let
|
let
|
||||||
inherit (lib.nixvim) defaultNullOpts mkNullOrOption mkNullOrStr;
|
inherit (lib.nixvim) defaultNullOpts mkNullOrStr;
|
||||||
inherit (lib) types;
|
inherit (lib) types;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
@ -104,7 +104,7 @@ in
|
||||||
'';
|
'';
|
||||||
|
|
||||||
completion = {
|
completion = {
|
||||||
triggerOnSnippetPlaceholders = mkNullOrOption types.bool ''
|
triggerOnSnippetPlaceholders = defaultNullOpts.mkBool false ''
|
||||||
Whether to trigger completions on arguments (placeholders) of snippets.
|
Whether to trigger completions on arguments (placeholders) of snippets.
|
||||||
|
|
||||||
For example, `box` will be completed to `box(|)`, and server will request the editor (lsp
|
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