1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 20:40:04 +08:00
SpaceVim/bundle/nvim-lspconfig/lua/lspconfig/server_configurations/m68k.lua
2022-07-24 16:14:35 +08:00

37 lines
686 B
Lua
Vendored

local util = require 'lspconfig.util'
local bin_name = 'm68k-lsp-server'
local cmd = { bin_name, '--stdio' }
if vim.fn.has 'win32' == 1 then
cmd = { 'cmd.exe', '/C', bin_name, '--stdio' }
end
return {
default_config = {
cmd = cmd,
filetypes = { 'asm68k' },
root_dir = util.root_pattern('Makefile', '.git'),
single_file_support = true,
},
docs = {
description = [[
https://github.com/grahambates/m68k-lsp
Language server for Motorola 68000 family assembly
`m68k-lsp-server` can be installed via `npm`:
```sh
npm install -g m68k-lsp-server
```
Ensure you are using the 68k asm syntax variant in Neovim.
```lua
vim.g.asmsyntax = 'asm68k'
```
]],
},
}