diff options
| author | William Boman <william@redwill.se> | 2022-01-12 02:37:55 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-11 17:37:55 -0800 |
| commit | 1b1ec8a897b50236252243e5106ae42641d53698 (patch) | |
| tree | d15c4e2f46e36f7a6ab869cbf7669a127811105b /lua/lspconfig | |
| parent | feat: add opencl_ls (#1654) (diff) | |
| download | nvim-lspconfig-1b1ec8a897b50236252243e5106ae42641d53698.tar nvim-lspconfig-1b1ec8a897b50236252243e5106ae42641d53698.tar.gz nvim-lspconfig-1b1ec8a897b50236252243e5106ae42641d53698.tar.bz2 nvim-lspconfig-1b1ec8a897b50236252243e5106ae42641d53698.tar.lz nvim-lspconfig-1b1ec8a897b50236252243e5106ae42641d53698.tar.xz nvim-lspconfig-1b1ec8a897b50236252243e5106ae42641d53698.tar.zst nvim-lspconfig-1b1ec8a897b50236252243e5106ae42641d53698.zip | |
feat: add asm_lsp (#1652)
Diffstat (limited to 'lua/lspconfig')
| -rw-r--r-- | lua/lspconfig/server_configurations/asm_lsp.lua | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lua/lspconfig/server_configurations/asm_lsp.lua b/lua/lspconfig/server_configurations/asm_lsp.lua new file mode 100644 index 00000000..102bcbab --- /dev/null +++ b/lua/lspconfig/server_configurations/asm_lsp.lua @@ -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 +]], + }, +} |
