This commit is contained in:
Daniel Flanagan 2022-09-26 21:03:18 -05:00
parent 1e9c99b132
commit 031eff6481
Signed by: lytedev
GPG Key ID: 5B2020A0F9921EF4
2 changed files with 2 additions and 25 deletions

View File

@ -26,4 +26,5 @@ D = "kill_to_line_end"
"C-k" = "jump_view_up"
"C-j" = "jump_view_down"
"C-h" = "jump_view_left"
"C-l" = "jump_view_right"
"C-l" = "jump_view_right"
"C-;" = "repeat_last_motion"

View File

@ -1,24 +0,0 @@
[[language]]
name = "typescript"
scope = "source.ts"
injection-regex = "ts"
file-types = ["typescript"]
roots = ["deno.json"]
language-server = { command = "denopoo", args = ["lsp"] }
config = { deno = { enable = true, lint = true } }
comment-token = "//"
indent = { tab-width = 2, unit = " " }
grammar = "javascript"
[[language]]
name = "elixir"
scope = "source.elixir"
injection-regex = "(elixir|ex)"
file-types = ["ex", "exs", "mix.lock"]
shebangs = ["elixir"]
roots = []
comment-token = "#"
auto-format = true
language-server = { command = "elixir-ls" }
config = { elixirLS.dialyzerEnabled = true }
indent = { tab-width = 2, unit = " " }