Skip to content

Commit

Permalink
feat: add asm_lsp (neovim#1652)
Browse files Browse the repository at this point in the history
  • Loading branch information
williamboman authored Jan 12, 2022
1 parent a8624be commit 1b1ec8a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions lua/lspconfig/server_configurations/asm_lsp.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
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
]],
},
}

0 comments on commit 1b1ec8a

Please sign in to comment.