diff options
| author | Marcelo <setanta@gmail.com> | 2025-03-31 22:47:54 -0300 |
|---|---|---|
| committer | Marcelo <setanta@gmail.com> | 2025-04-04 00:10:31 -0300 |
| commit | a6c8bec8ea2364ad54087fec0779de97baab179b (patch) | |
| tree | c5365cf7f7adeaeb92a4dfd55770f8145bbda923 /lsp | |
| parent | 43af656a9e1325e76c69e6f5e694214156c278f1 (diff) | |
Add Bash, Crystal, and Vala language server config.
Diffstat (limited to 'lsp')
| -rw-r--r-- | lsp/bash.lua | 5 | ||||
| -rw-r--r-- | lsp/crystal.lua | 6 | ||||
| -rw-r--r-- | lsp/vala.lua | 5 |
3 files changed, 16 insertions, 0 deletions
diff --git a/lsp/bash.lua b/lsp/bash.lua new file mode 100644 index 0000000..113bf45 --- /dev/null +++ b/lsp/bash.lua @@ -0,0 +1,5 @@ +return { + cmd = { "bash-language-server", "start" }, + filetypes = { "sh" }, + single_file_support = true, +} diff --git a/lsp/crystal.lua b/lsp/crystal.lua new file mode 100644 index 0000000..95b6dd9 --- /dev/null +++ b/lsp/crystal.lua @@ -0,0 +1,6 @@ +return { + cmd = { "crystalline", "--stdio" }, + filetypes = { "crystal" }, + root_markers = { "shard.yml", ".git" }, + single_file_support = true, +} diff --git a/lsp/vala.lua b/lsp/vala.lua new file mode 100644 index 0000000..998c59a --- /dev/null +++ b/lsp/vala.lua @@ -0,0 +1,5 @@ +return { + cmd = { "vala-language-server" }, + filetypes = { "vala", "genie" }, + single_file_support = true, +} |
