plugins/lsp: move related plugins to by-name

This commit is contained in:
Matt Sturgeon 2024-09-04 17:47:06 +01:00
parent 91c6b62881
commit 8815180c62
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
23 changed files with 0 additions and 11 deletions

View 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;
};
};
};
};
}