parent
d91691c0a4
commit
3673787e55
2 changed files with 10 additions and 1 deletions
|
@ -37,6 +37,7 @@ pub fn build(b: *std.Build) void {
|
||||||
ts_queryfile(b, tree_sitter_dep, "tree-sitter-javascript/queries/highlights.scm"),
|
ts_queryfile(b, tree_sitter_dep, "tree-sitter-javascript/queries/highlights.scm"),
|
||||||
ts_queryfile(b, tree_sitter_dep, "tree-sitter-jsdoc/queries/highlights.scm"),
|
ts_queryfile(b, tree_sitter_dep, "tree-sitter-jsdoc/queries/highlights.scm"),
|
||||||
ts_queryfile(b, tree_sitter_dep, "tree-sitter-json/queries/highlights.scm"),
|
ts_queryfile(b, tree_sitter_dep, "tree-sitter-json/queries/highlights.scm"),
|
||||||
|
ts_queryfile(b, tree_sitter_dep, "tree-sitter-julia/queries/highlights.scm"),
|
||||||
ts_queryfile(b, tree_sitter_dep, "tree-sitter-kdl/queries/highlights.scm"),
|
ts_queryfile(b, tree_sitter_dep, "tree-sitter-kdl/queries/highlights.scm"),
|
||||||
ts_queryfile(b, tree_sitter_dep, "tree-sitter-lua/queries/highlights.scm"),
|
ts_queryfile(b, tree_sitter_dep, "tree-sitter-lua/queries/highlights.scm"),
|
||||||
ts_queryfile(b, tree_sitter_dep, "tree-sitter-make/queries/highlights.scm"),
|
ts_queryfile(b, tree_sitter_dep, "tree-sitter-make/queries/highlights.scm"),
|
||||||
|
|
|
@ -176,6 +176,14 @@ pub const json = .{
|
||||||
.formatter = .{ "hjson", "-j" },
|
.formatter = .{ "hjson", "-j" },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pub const julia = .{
|
||||||
|
.color = 0x4D64AE,
|
||||||
|
.icon = "",
|
||||||
|
.extensions = .{"jl"},
|
||||||
|
.comment = "#",
|
||||||
|
.language_server = .{ "julia", "-e", "using LanguageServer; runserver()" },
|
||||||
|
};
|
||||||
|
|
||||||
pub const kdl = .{
|
pub const kdl = .{
|
||||||
.color = 0x000000,
|
.color = 0x000000,
|
||||||
.icon = "",
|
.icon = "",
|
||||||
|
@ -350,7 +358,7 @@ pub const swift = .{
|
||||||
.extensions = .{ "swift", "swiftinterface" },
|
.extensions = .{ "swift", "swiftinterface" },
|
||||||
.comment = "//",
|
.comment = "//",
|
||||||
.language_server = .{"sourcekit-lsp"},
|
.language_server = .{"sourcekit-lsp"},
|
||||||
.formatter = .{ "swift-format" },
|
.formatter = .{"swift-format"},
|
||||||
};
|
};
|
||||||
|
|
||||||
pub const toml = .{
|
pub const toml = .{
|
||||||
|
|
Loading…
Add table
Reference in a new issue