fix(plugins/astrocore): wrongly set options
This commit is contained in:
parent
f71226be0f
commit
208ee4fec2
4 changed files with 66 additions and 74 deletions
|
|
@ -2,32 +2,30 @@
|
|||
{ icons, ... }:
|
||||
|
||||
{
|
||||
diagnostics = {
|
||||
underline = true;
|
||||
update_in_insert = true;
|
||||
severity_sort = true;
|
||||
virtual_text = true;
|
||||
underline = true;
|
||||
update_in_insert = true;
|
||||
severity_sort = true;
|
||||
virtual_text = true;
|
||||
|
||||
float = {
|
||||
focused = false;
|
||||
style = "minimal";
|
||||
border = "rounded";
|
||||
source = "always";
|
||||
header = "";
|
||||
prefix = "";
|
||||
};
|
||||
float = {
|
||||
focused = false;
|
||||
style = "minimal";
|
||||
border = "rounded";
|
||||
source = "always";
|
||||
header = "";
|
||||
prefix = "";
|
||||
};
|
||||
|
||||
signs = {
|
||||
text = {
|
||||
# vim.diagnostic.severity.ERROR
|
||||
"1" = icons.DiagnosticError;
|
||||
# vim.diagnostic.severity.WARN
|
||||
"2" = icons.DiagnosticWarn;
|
||||
# vim.diagnostic.severity.INFO
|
||||
"3" = icons.DiagnosticInfo;
|
||||
# vim.diagnostic.severity.HINT
|
||||
"4" = icons.DiagnosticHint;
|
||||
};
|
||||
signs = {
|
||||
text = {
|
||||
# vim.diagnostic.severity.ERROR
|
||||
"1" = icons.DiagnosticError;
|
||||
# vim.diagnostic.severity.WARN
|
||||
"2" = icons.DiagnosticWarn;
|
||||
# vim.diagnostic.severity.INFO
|
||||
"3" = icons.DiagnosticInfo;
|
||||
# vim.diagnostic.severity.HINT
|
||||
"4" = icons.DiagnosticHint;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue