summaryrefslogtreecommitdiff
path: root/lsp/crystal.lua
diff options
context:
space:
mode:
authorMarcelo <setanta@gmail.com>2025-03-31 22:47:54 -0300
committerMarcelo <setanta@gmail.com>2025-04-04 00:10:31 -0300
commita6c8bec8ea2364ad54087fec0779de97baab179b (patch)
treec5365cf7f7adeaeb92a4dfd55770f8145bbda923 /lsp/crystal.lua
parent43af656a9e1325e76c69e6f5e694214156c278f1 (diff)
Add Bash, Crystal, and Vala language server config.
Diffstat (limited to 'lsp/crystal.lua')
-rw-r--r--lsp/crystal.lua6
1 files changed, 6 insertions, 0 deletions
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,
+}