mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-01 21:04:30 +02:00
plugins/bufferlines: normalize plugin defaults
This commit is contained in:
parent
9000e69f4b
commit
d57cbd867a
3 changed files with 24 additions and 12 deletions
|
@ -49,11 +49,17 @@ in
|
|||
Enable to have nvim-navic automatically attach to every LSP for current buffer. Its disabled by default.
|
||||
'';
|
||||
|
||||
preference = helpers.defaultNullOpts.mkNullable (with types; listOf str) "[]" ''
|
||||
Table ranking lsp_servers. Lower the index, higher the priority of the server. If there are more than one server attached to a buffer. In the example below will prefer clangd over pyright
|
||||
|
||||
Example: `[ "clangd" "pyright" ]`.
|
||||
'';
|
||||
preference = helpers.defaultNullOpts.mkListOf' {
|
||||
type = types.str;
|
||||
pluginDefault = [ ];
|
||||
example = [
|
||||
"clangd"
|
||||
"pyright"
|
||||
];
|
||||
description = ''
|
||||
Table ranking lsp_servers. Lower the index, higher the priority of the server. If there are more than one server attached to a buffer. In the example below will prefer clangd over pyright
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
highlight = helpers.defaultNullOpts.mkBool false ''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue