diff options
author | Justin Ma | 2022-04-22 14:37:51 +0000 |
---|---|---|
committer | GitHub | 2022-04-22 14:37:51 +0000 |
commit | 5c2570582bdacf7acebf1bf4cab90699b98ecc67 (patch) | |
tree | 8bc047910e863f435e33a5b50a6b4095c3de252a /languages.toml | |
parent | 3c250b7528175e67717a3c6d11be7409023d5a16 (diff) |
feat(lang): add nushell language support (#2225)
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
Diffstat (limited to 'languages.toml')
-rw-r--r-- | languages.toml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/languages.toml b/languages.toml index 76b4ca16..3b2eedf2 100644 --- a/languages.toml +++ b/languages.toml @@ -1210,3 +1210,16 @@ indent = { tab-width = 4, unit = " " } [[grammar]] name = "gdscript" source = { git = "https://github.com/PrestonKnopp/tree-sitter-gdscript", rev = "2a6abdaa47fcb91397e09a97c7433fd995ea46c6" } + +[[language]] +name = "nu" +scope = "source.nu" +injection-regex = "nu" +file-types = ["nu"] +roots = [] +comment-token = "#" +indent = { tab-width = 2, unit = " " } + +[[grammar]] +name = "nu" +source = { git = "https://github.com/LhKipp/tree-sitter-nu", rev = "db4e990b78824c8abef3618e0f93b7fe1e8f4c0d" } |