Skip to content

Commit

Permalink
Added more language configs
Browse files Browse the repository at this point in the history
  • Loading branch information
Nimaoth committed Nov 8, 2024
1 parent fea1062 commit 108522b
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions config/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
"\\.java$": "java",
"\\.(js|jsx)$": "javascript",
"\\.json$": "json",
"\\.nev-session$": "json",
"\\.lock$": "json",
"\\.yml$": "yaml",
"\\.nix$": "nix",
Expand All @@ -118,6 +119,7 @@
"\\.scm$": "query",
"\\.toml$": "toml",
"\\.ps1$": "powershell",
"\\.wat$": "elisp",
"\\.talon$": "talon",
"/(vector|string|thread|iostream)$": "cpp",
".+/MSVC/.+/include(/.+?)*/[a-z0-9_]+$": "cpp",
Expand Down Expand Up @@ -461,6 +463,32 @@
],
"lineComment": "#"
},
"commonlisp": {
"treesitter": "tree-sitter-grammars/tree-sitter-commonlisp",
"tabWidth": 2,
"indent": "spaces",
"indentAfter": [
"(",
"{",
"["
],
"lineComment": ";",
"blockComment": [
"(;",
";)"
]
},
"elisp": {
"treesitter": "Wilfred/tree-sitter-elisp",
"tabWidth": 2,
"indent": "spaces",
"indentAfter": [
"(",
"{",
"["
],
"lineComment": ";"
},
"wit": {
"treesitter": "liamwh/tree-sitter-wit",
"tabWidth": 2,
Expand Down

0 comments on commit 108522b

Please sign in to comment.