feat: Added assembly lsp to neovim config 23de88f2
Steve Simkins · 2025-07-27 15:50 2 file(s) · +22 −1
nvim/lsp/asm-lsp.lua (added) +20 −0
1 +
return {
2 +
	cmd = {
3 +
		"asm-lsp",
4 +
	},
5 +
	filetypes = {
6 +
		"s",
7 +
		"S",
8 +
		"asm"
9 +
	},
10 +
	-- settings = {
11 +
	--     Lua = {
12 +
	--         diagnostics = {
13 +
	--             --     disable = { "missing-parameters", "missing-fields" },
14 +
	--         },
15 +
	--     },
16 +
	-- },
17 +
18 +
	single_file_support = true,
19 +
	log_level = vim.lsp.protocol.MessageType.Warning,
20 +
}
nvim/lua/core/lsp.lua +2 −1
2 2
    "gopls",
3 3
    "lua_ls",
4 4
    "tsserver",
5 -
    "rust-analyzer"
5 +
    "rust-analyzer",
6 +
    "asm-lsp"
6 7
})
7 8
8 9
vim.diagnostic.config({