Enable metals semantic highlighting
This commit is contained in:
parent
7bd9cb16b8
commit
3a564ac426
|
@ -60,6 +60,11 @@ in
|
||||||
command = "metals";
|
command = "metals";
|
||||||
filetypes = [ "scala" ];
|
filetypes = [ "scala" ];
|
||||||
roots = [ "build.sbt" ];
|
roots = [ "build.sbt" ];
|
||||||
|
settings_section = "metals";
|
||||||
|
settings.metals = {
|
||||||
|
enableSemanticHighlighting = true;
|
||||||
|
showInferredType = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
programs.kak-lsp.languages.latex = {
|
programs.kak-lsp.languages.latex = {
|
||||||
command = "texlab";
|
command = "texlab";
|
||||||
|
|
|
@ -177,6 +177,7 @@ let
|
||||||
{ face = "class"; token = "struct"; }
|
{ face = "class"; token = "struct"; }
|
||||||
{ face = "class"; token = "trait"; }
|
{ face = "class"; token = "trait"; }
|
||||||
{ face = "class"; token = "union"; }
|
{ face = "class"; token = "union"; }
|
||||||
|
{ face = "class"; token = "class"; }
|
||||||
|
|
||||||
## Comments
|
## Comments
|
||||||
{ face = "documentation"; token = "comment"; modifiers = [ "documentation" ]; }
|
{ face = "documentation"; token = "comment"; modifiers = [ "documentation" ]; }
|
||||||
|
|
Loading…
Reference in a new issue