plugins/lsp-status: init

This commit is contained in:
ben 2024-05-29 17:41:21 -07:00 committed by Gaétan Lepage
parent ea69144d60
commit 993deb227e
3 changed files with 121 additions and 0 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;
};
};
};
};
}