mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-12 18:24:35 +02:00
plugins/lsp-status: init
This commit is contained in:
parent
ea69144d60
commit
993deb227e
3 changed files with 121 additions and 0 deletions
32
tests/test-sources/plugins/lsp/lsp-status.nix
Normal file
32
tests/test-sources/plugins/lsp/lsp-status.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
empty = {
|
||||
plugins = {
|
||||
lsp.enable = true;
|
||||
lsp-status.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins = {
|
||||
lsp.enable = true;
|
||||
lsp-status = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
kind_labels = { };
|
||||
select_symbol = "";
|
||||
current_function = true;
|
||||
show_filename = true;
|
||||
indicator_ok = "OK";
|
||||
indicator_errors = "E";
|
||||
indicator_warnings = "W";
|
||||
indicator_info = "i";
|
||||
indicator_hint = "?";
|
||||
indicator_separator = " ";
|
||||
component_separator = " ";
|
||||
diagnostics = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue