2021-03-25 07:26:25 +01:00
|
|
|
[[language]]
|
|
|
|
name = "rust"
|
|
|
|
scope = "source.rust"
|
|
|
|
injection-regex = "rust"
|
|
|
|
file-types = ["rs"]
|
|
|
|
roots = []
|
2021-06-12 03:20:37 +02:00
|
|
|
auto-format = true
|
2021-07-20 08:48:34 +02:00
|
|
|
comment-token = "//"
|
2021-07-18 09:56:25 +02:00
|
|
|
config = """
|
|
|
|
{
|
|
|
|
"cargo": {
|
|
|
|
"loadOutDirsFromCheck": true
|
|
|
|
},
|
|
|
|
"procMacro": {
|
|
|
|
"enable": false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
2021-03-25 07:26:25 +01:00
|
|
|
|
|
|
|
language-server = { command = "rust-analyzer" }
|
|
|
|
indent = { tab-width = 4, unit = " " }
|
|
|
|
|
2021-08-24 11:01:05 +02:00
|
|
|
[language.debugger]
|
|
|
|
name = "lldb"
|
|
|
|
transport = "tcp"
|
|
|
|
command = "lldb-vscode"
|
|
|
|
args = []
|
|
|
|
port-arg = "-p {}"
|
|
|
|
|
|
|
|
[[language.debugger.templates]]
|
|
|
|
name = "binary"
|
|
|
|
request = "launch"
|
2021-08-24 19:04:14 +02:00
|
|
|
args = { console = "internalConsole", program = "{0}" }
|
2021-08-24 11:01:05 +02:00
|
|
|
|
2021-08-24 19:27:54 +02:00
|
|
|
[[language.debugger.templates]]
|
|
|
|
name = "attach"
|
|
|
|
request = "attach"
|
|
|
|
args = { console = "internalConsole", pid = "{0}" }
|
|
|
|
|
2021-03-25 07:26:25 +01:00
|
|
|
[[language]]
|
|
|
|
name = "toml"
|
|
|
|
scope = "source.toml"
|
|
|
|
injection-regex = "toml"
|
|
|
|
file-types = ["toml"]
|
|
|
|
roots = []
|
2021-07-20 08:48:34 +02:00
|
|
|
comment-token = "#"
|
2021-03-25 07:26:25 +01:00
|
|
|
|
|
|
|
indent = { tab-width = 2, unit = " " }
|
2021-04-07 06:40:20 +02:00
|
|
|
|
2021-08-18 12:54:47 +02:00
|
|
|
[[language]]
|
|
|
|
name = "protobuf"
|
|
|
|
scope = "source.proto"
|
|
|
|
injection-regex = "protobuf"
|
|
|
|
file-types = ["proto"]
|
|
|
|
roots = []
|
|
|
|
comment-token = "//"
|
|
|
|
|
|
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
|
2021-06-01 21:46:31 +02:00
|
|
|
[[language]]
|
|
|
|
name = "elixir"
|
|
|
|
scope = "source.elixir"
|
|
|
|
injection-regex = "elixir"
|
|
|
|
file-types = ["ex", "exs"]
|
|
|
|
roots = []
|
2021-08-07 08:04:37 +02:00
|
|
|
comment-token = "#"
|
2021-06-01 21:46:31 +02:00
|
|
|
|
|
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
|
2021-04-07 07:04:13 +02:00
|
|
|
[[language]]
|
|
|
|
name = "json"
|
|
|
|
scope = "source.json"
|
|
|
|
injection-regex = "json"
|
|
|
|
file-types = ["json"]
|
|
|
|
roots = []
|
|
|
|
|
|
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
|
|
|
|
[[language]]
|
|
|
|
name = "c"
|
|
|
|
scope = "source.c"
|
|
|
|
injection-regex = "c"
|
|
|
|
file-types = ["c"] # TODO: ["h"]
|
|
|
|
roots = []
|
2021-07-20 08:48:34 +02:00
|
|
|
comment-token = "//"
|
2021-04-07 07:04:13 +02:00
|
|
|
|
2021-06-03 15:07:50 +02:00
|
|
|
language-server = { command = "clangd" }
|
2021-04-07 07:04:13 +02:00
|
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
|
2021-08-24 11:01:05 +02:00
|
|
|
[language.debugger]
|
|
|
|
name = "lldb"
|
|
|
|
transport = "tcp"
|
|
|
|
command = "lldb-vscode"
|
|
|
|
args = []
|
|
|
|
port-arg = "-p {}"
|
|
|
|
|
|
|
|
[[language.debugger.templates]]
|
|
|
|
name = "binary"
|
|
|
|
request = "launch"
|
2021-08-24 19:32:38 +02:00
|
|
|
args = { console = "internalConsole", program = "{0}" }
|
2021-08-24 11:01:05 +02:00
|
|
|
|
2021-08-24 19:27:54 +02:00
|
|
|
[[language.debugger.templates]]
|
|
|
|
name = "attach"
|
|
|
|
request = "attach"
|
|
|
|
args = { console = "internalConsole", pid = "{0}" }
|
|
|
|
|
2021-04-07 06:40:20 +02:00
|
|
|
[[language]]
|
|
|
|
name = "cpp"
|
|
|
|
scope = "source.cpp"
|
|
|
|
injection-regex = "cpp"
|
2021-08-18 18:39:08 +02:00
|
|
|
file-types = ["cc", "hh", "cpp", "hpp", "h", "ipp", "tpp", "cxx", "hxx", "ixx", "txx", "ino"]
|
2021-04-07 06:40:20 +02:00
|
|
|
roots = []
|
2021-07-20 08:48:34 +02:00
|
|
|
comment-token = "//"
|
2021-04-07 06:40:20 +02:00
|
|
|
|
2021-06-03 15:07:50 +02:00
|
|
|
language-server = { command = "clangd" }
|
2021-04-07 06:40:20 +02:00
|
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
|
2021-08-24 11:01:05 +02:00
|
|
|
[language.debugger]
|
|
|
|
name = "lldb"
|
|
|
|
transport = "tcp"
|
|
|
|
command = "lldb-vscode"
|
|
|
|
args = []
|
|
|
|
port-arg = "-p {}"
|
|
|
|
|
|
|
|
[[language.debugger.templates]]
|
|
|
|
name = "binary"
|
|
|
|
request = "launch"
|
2021-08-24 19:32:38 +02:00
|
|
|
args = { console = "internalConsole", program = "{0}" }
|
2021-08-24 11:01:05 +02:00
|
|
|
|
2021-08-24 19:27:54 +02:00
|
|
|
[[language.debugger.templates]]
|
|
|
|
name = "attach"
|
|
|
|
request = "attach"
|
|
|
|
args = { console = "internalConsole", pid = "{0}" }
|
|
|
|
|
2021-04-07 07:04:13 +02:00
|
|
|
[[language]]
|
|
|
|
name = "go"
|
|
|
|
scope = "source.go"
|
|
|
|
injection-regex = "go"
|
|
|
|
file-types = ["go"]
|
|
|
|
roots = ["Gopkg.toml", "go.mod"]
|
2021-06-12 03:20:37 +02:00
|
|
|
auto-format = true
|
2021-07-20 08:48:34 +02:00
|
|
|
comment-token = "//"
|
2021-04-07 07:04:13 +02:00
|
|
|
|
|
|
|
language-server = { command = "gopls" }
|
2021-04-15 10:34:38 +02:00
|
|
|
# TODO: gopls needs utf-8 offsets?
|
2021-04-23 11:55:34 +02:00
|
|
|
indent = { tab-width = 4, unit = "\t" }
|
2021-04-07 07:04:13 +02:00
|
|
|
|
2021-08-24 10:56:18 +02:00
|
|
|
[language.debugger]
|
|
|
|
name = "go"
|
|
|
|
transport = "tcp"
|
|
|
|
command = "dlv"
|
|
|
|
args = ["dap"]
|
|
|
|
port-arg = "-l 127.0.0.1:{}"
|
|
|
|
|
|
|
|
[[language.debugger.templates]]
|
|
|
|
name = "source"
|
|
|
|
request = "launch"
|
2021-08-24 19:32:38 +02:00
|
|
|
args = { mode = "debug", program = "{0}" }
|
2021-08-24 10:56:18 +02:00
|
|
|
|
|
|
|
[[language.debugger.templates]]
|
|
|
|
name = "binary"
|
|
|
|
request = "launch"
|
2021-08-24 19:32:38 +02:00
|
|
|
args = { mode = "exec", program = "{0}" }
|
2021-08-24 10:56:18 +02:00
|
|
|
|
|
|
|
[[language.debugger.templates]]
|
|
|
|
name = "test"
|
|
|
|
request = "launch"
|
2021-08-24 19:04:14 +02:00
|
|
|
args = { mode = "test", program = "{0}" }
|
2021-08-23 15:56:41 +02:00
|
|
|
|
2021-08-24 19:27:54 +02:00
|
|
|
[[language.debugger.templates]]
|
|
|
|
name = "attach"
|
|
|
|
request = "attach"
|
|
|
|
args = { mode = "local", processId = "{0}" }
|
|
|
|
|
2021-04-07 06:40:20 +02:00
|
|
|
[[language]]
|
|
|
|
name = "javascript"
|
|
|
|
scope = "source.js"
|
|
|
|
injection-regex = "^(js|javascript)$"
|
2021-08-18 02:40:00 +02:00
|
|
|
file-types = ["js", "mjs"]
|
2021-04-07 06:40:20 +02:00
|
|
|
roots = []
|
2021-07-20 08:48:34 +02:00
|
|
|
comment-token = "//"
|
2021-04-07 06:40:20 +02:00
|
|
|
# TODO: highlights-jsx, highlights-params
|
|
|
|
|
|
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
|
2021-06-01 10:40:40 +02:00
|
|
|
[[language]]
|
|
|
|
name = "typescript"
|
|
|
|
scope = "source.ts"
|
|
|
|
injection-regex = "^(ts|typescript)$"
|
|
|
|
file-types = ["ts"]
|
|
|
|
roots = []
|
|
|
|
# TODO: highlights-jsx, highlights-params
|
|
|
|
|
|
|
|
language-server = { command = "typescript-language-server", args = ["--stdio"] }
|
|
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
|
2021-04-07 06:40:20 +02:00
|
|
|
[[language]]
|
|
|
|
name = "css"
|
|
|
|
scope = "source.css"
|
|
|
|
injection-regex = "css"
|
|
|
|
file-types = ["css"]
|
|
|
|
roots = []
|
|
|
|
|
|
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
|
|
|
|
[[language]]
|
|
|
|
name = "html"
|
|
|
|
scope = "text.html.basic"
|
|
|
|
injection-regex = "html"
|
|
|
|
file-types = ["html"]
|
|
|
|
roots = []
|
|
|
|
|
|
|
|
indent = { tab-width = 2, unit = " " }
|
2021-04-07 06:51:09 +02:00
|
|
|
|
|
|
|
[[language]]
|
|
|
|
name = "python"
|
|
|
|
scope = "source.python"
|
|
|
|
injection-regex = "python"
|
|
|
|
file-types = ["py"]
|
|
|
|
roots = []
|
2021-07-20 08:48:34 +02:00
|
|
|
comment-token = "#"
|
2021-04-07 06:51:09 +02:00
|
|
|
|
|
|
|
language-server = { command = "pyls" }
|
|
|
|
# TODO: pyls needs utf-8 offsets
|
2021-06-21 14:32:52 +02:00
|
|
|
indent = { tab-width = 4, unit = " " }
|
2021-04-07 07:04:13 +02:00
|
|
|
|
2021-06-10 01:05:54 +02:00
|
|
|
[[language]]
|
|
|
|
name = "nix"
|
|
|
|
scope = "source.nix"
|
|
|
|
injection-regex = "nix"
|
|
|
|
file-types = ["nix"]
|
|
|
|
roots = []
|
2021-08-07 08:04:37 +02:00
|
|
|
comment-token = "#"
|
2021-06-10 01:05:54 +02:00
|
|
|
|
|
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
|
2021-04-07 07:04:13 +02:00
|
|
|
[[language]]
|
|
|
|
name = "ruby"
|
|
|
|
scope = "source.ruby"
|
|
|
|
injection-regex = "ruby"
|
|
|
|
file-types = ["rb"]
|
|
|
|
roots = []
|
2021-07-20 08:48:34 +02:00
|
|
|
comment-token = "#"
|
2021-04-07 07:04:13 +02:00
|
|
|
|
|
|
|
language-server = { command = "solargraph", args = ["stdio"] }
|
|
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
|
|
|
|
[[language]]
|
|
|
|
name = "bash"
|
|
|
|
scope = "source.bash"
|
|
|
|
injection-regex = "bash"
|
|
|
|
file-types = ["sh", "bash"]
|
|
|
|
roots = []
|
2021-07-20 08:48:34 +02:00
|
|
|
comment-token = "#"
|
2021-04-07 07:04:13 +02:00
|
|
|
|
|
|
|
language-server = { command = "bash-language-server", args = ["start"] }
|
|
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
|
|
|
|
[[language]]
|
|
|
|
name = "php"
|
|
|
|
scope = "source.php"
|
|
|
|
injection-regex = "php"
|
|
|
|
file-types = ["php"]
|
|
|
|
roots = []
|
|
|
|
|
|
|
|
indent = { tab-width = 2, unit = " " }
|
2021-06-01 21:44:03 +02:00
|
|
|
|
2021-06-15 18:50:42 +02:00
|
|
|
[[language]]
|
|
|
|
name = "latex"
|
|
|
|
scope = "source.tex"
|
|
|
|
injection-regex = "tex"
|
|
|
|
file-types = ["tex"]
|
|
|
|
roots = []
|
2021-07-20 08:48:34 +02:00
|
|
|
comment-token = "%"
|
2021-06-15 18:50:42 +02:00
|
|
|
|
|
|
|
indent = { tab-width = 4, unit = "\t" }
|
|
|
|
|
2021-07-04 14:24:33 +02:00
|
|
|
[[language]]
|
|
|
|
name = "julia"
|
|
|
|
scope = "source.julia"
|
|
|
|
injection-regex = "julia"
|
|
|
|
file-types = ["jl"]
|
|
|
|
roots = []
|
2021-07-20 08:48:34 +02:00
|
|
|
comment-token = "#"
|
2021-07-05 10:58:10 +02:00
|
|
|
language-server = { command = "julia", args = [ "--startup-file=no", "--history-file=no", "-e", "using LanguageServer;using Pkg;import StaticLint;import SymbolServer;env_path = dirname(Pkg.Types.Context().env.project_file);server = LanguageServer.LanguageServerInstance(stdin, stdout, env_path, \"\");server.runlinter = true;run(server);" ] }
|
2021-07-04 14:24:33 +02:00
|
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
|
2021-08-10 07:09:57 +02:00
|
|
|
[[language]]
|
|
|
|
name = "java"
|
|
|
|
scope = "source.java"
|
|
|
|
injection-regex = "java"
|
|
|
|
file-types = ["java"]
|
|
|
|
roots = []
|
|
|
|
indent = { tab-width = 4, unit = " " }
|
|
|
|
|
2021-08-16 04:03:57 +02:00
|
|
|
[[language]]
|
|
|
|
name = "ledger"
|
|
|
|
scope = "source.ledger"
|
|
|
|
injection-regex = "ledger"
|
|
|
|
file-types = ["ldg", "ledger", "journal"]
|
|
|
|
roots = []
|
|
|
|
comment-token = ";"
|
|
|
|
indent = { tab-width = 4, unit = " " }
|
|
|
|
|
2021-06-07 03:17:25 +02:00
|
|
|
# [[language]]
|
|
|
|
# name = "haskell"
|
|
|
|
# scope = "source.haskell"
|
|
|
|
# injection-regex = "haskell"
|
|
|
|
# file-types = ["hs"]
|
|
|
|
# roots = []
|
2021-07-20 08:48:34 +02:00
|
|
|
# comment-token = "--"
|
2021-06-07 03:17:25 +02:00
|
|
|
#
|
|
|
|
# indent = { tab-width = 2, unit = " " }
|
2021-08-28 06:32:01 +02:00
|
|
|
|
|
|
|
[[language]]
|
|
|
|
name = "zig"
|
|
|
|
scope = "source.zig"
|
|
|
|
injection-regex = "zig"
|
|
|
|
file-types = ["zig"]
|
|
|
|
roots = ["build.zig"]
|
|
|
|
auto-format = true
|
|
|
|
comment-token = "//"
|
|
|
|
|
|
|
|
language-server = { command = "zls" }
|
|
|
|
indent = { tab-width = 4, unit = " " }
|