mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
33 lines
651 B
Nix
33 lines
651 B
Nix
|
{
|
||
|
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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|