summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/user/lsp/asm.lua
blob: 04814a9b03fcbc45e31867babdb83be8c15a9c5f (plain)
1
2
3
4
5
6
7
local lsp = require'lspconfig'

lsp.asm_lsp.setup{
	cmd = { "asm-lsp", "--stdio" },
	filetypes = { "s", "asm", "S" },
	root_dir = lsp.util.root_pattern("Makefile", ".git"),
}