aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/asm_lsp.lua
blob: 28678c062d279fd0fd6f7623f8dac606853aa449 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---@brief
---
--- https://github.com/bergercookie/asm-lsp
---
--- Language Server for NASM/GAS/GO Assembly
---
--- `asm-lsp` can be installed via cargo:
--- cargo install asm-lsp

---@type vim.lsp.Config
return {
  cmd = { 'asm-lsp' },
  filetypes = { 'asm', 'vmasm' },
  root_markers = { '.asm-lsp.toml', '.git' },
}