summaryrefslogtreecommitdiff
path: root/lsp/asm.lua
diff options
context:
space:
mode:
authorMarcelo <setanta@gmail.com>2025-04-01 15:15:57 -0300
committerMarcelo <setanta@gmail.com>2025-04-04 00:10:31 -0300
commite239063049b5474c89b21137b99c59616b578d7a (patch)
tree062765e47029e191b936fd2426cfff0f4aab6422 /lsp/asm.lua
parenta6c8bec8ea2364ad54087fec0779de97baab179b (diff)
Added a bunch of treesitters and an ASM LSP.
Diffstat (limited to 'lsp/asm.lua')
-rw-r--r--lsp/asm.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/lsp/asm.lua b/lsp/asm.lua
new file mode 100644
index 0000000..5630949
--- /dev/null
+++ b/lsp/asm.lua
@@ -0,0 +1,6 @@
+return {
+ cmd = { "asm-lsp" },
+ filetypes = { "asm", "s" },
+ root_markers = { ".git", "Makefile" },
+ single_file_support = true,
+}