mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 02:30:04 +08:00
20 lines
355 B
Lua
20 lines
355 B
Lua
|
local util = require 'lspconfig.util'
|
||
|
|
||
|
return {
|
||
|
default_config = {
|
||
|
cmd = { 'asm-lsp' },
|
||
|
filetypes = { 'asm', 'vmasm' },
|
||
|
root_dir = util.find_git_ancestor,
|
||
|
},
|
||
|
docs = {
|
||
|
description = [[
|
||
|
https://github.com/bergercookie/asm-lsp
|
||
|
|
||
|
Language Server for GAS/GO Assembly
|
||
|
|
||
|
`asm-lsp` can be installed via cargo:
|
||
|
cargo install asm-lsp
|
||
|
]],
|
||
|
},
|
||
|
}
|