diff options
Diffstat (limited to 'languages.toml')
-rw-r--r-- | languages.toml | 32 |
1 files changed, 23 insertions, 9 deletions
diff --git a/languages.toml b/languages.toml index 785bc970..ba3b1906 100644 --- a/languages.toml +++ b/languages.toml @@ -327,6 +327,29 @@ language-servers = [ "mint" ] indent = { tab-width = 2, unit = " " } [[language]] +name = "janet" +scope = "source.janet" +injection-regex = "janet" +file-types = ["cgen", "janet", "jdn"] +shebangs = ["janet"] +roots = ["project.janet"] +comment-token = "#" +indent = { tab-width = 2, unit = " " } +formatter = { command = "janet-format" } +grammar = "janet-simple" + +[language.auto-pairs] +'"' = '"' +'(' = ')' +'[' = ']' +'{' = '}' +"`" = "`" + +[[grammar]] +name = "janet-simple" +source = { git = "https://github.com/sogaiu/tree-sitter-janet-simple", rev = "51271e260346878e1a1aa6c506ce6a797b7c25e2" } + +[[language]] name = "json" scope = "source.json" injection-regex = "json" @@ -3009,15 +3032,6 @@ name = "log" source = { git = "https://github.com/Tudyx/tree-sitter-log", rev = "62cfe307e942af3417171243b599cc7deac5eab9" } [[language]] -name = "janet" -scope = "source.janet" -injection-regex = "janet" -file-types = ["janet"] -comment-token = "#" -indent = { tab-width = 2, unit = " " } -grammar = "clojure" - -[[language]] name = "hocon" scope = "source.conf" file-types = ["conf"] |