mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-04 01:55:11 +02:00
plugins/lsp-status: add undocumented options
This commit is contained in:
parent
aaecda1471
commit
40cb7af2b9
1 changed files with 24 additions and 0 deletions
|
@ -58,6 +58,30 @@ lib.nixvim.neovim-plugin.mkNeovimPlugin {
|
|||
diagnostics = defaultNullOpts.mkBool true ''
|
||||
If false, the default statusline component does not display LSP diagnostics.
|
||||
'';
|
||||
|
||||
spinner_frames =
|
||||
defaultNullOpts.mkListOf types.str
|
||||
[
|
||||
"⣾"
|
||||
"⣽"
|
||||
"⣻"
|
||||
"⢿"
|
||||
"⡿"
|
||||
"⣟"
|
||||
"⣯"
|
||||
"⣷"
|
||||
]
|
||||
''
|
||||
Animation frames of the spinner displayed while lsp is processing.
|
||||
'';
|
||||
|
||||
status_symbol = defaultNullOpts.mkStr " 🇻" ''
|
||||
Symbol displayed at the beginning of the status message.
|
||||
'';
|
||||
|
||||
update_interval = defaultNullOpts.mkInt 100 ''
|
||||
The interval, in milliseconds, to update the status message.
|
||||
'';
|
||||
};
|
||||
|
||||
callSetup = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue