Compare commits

...

2 Commits

Author SHA1 Message Date
0eafcb26b2 [TS] Add asm parser 2025-05-02 07:50:55 +02:00
f7d3c8b24b [LSP] Format, add asm lsp 2025-05-02 07:49:33 +02:00
2 changed files with 213 additions and 207 deletions

View File

@ -179,6 +179,11 @@ return {
}, },
}) })
lspconfig.asm_lsp.setup({
on_attach = on_attach,
capabilities = capabilities,
})
local java_on_attach = function(client, bufnr) local java_on_attach = function(client, bufnr)
on_attach(client, bufnr) on_attach(client, bufnr)

View File

@ -5,6 +5,7 @@ return {
config = function() config = function()
require("nvim-treesitter.configs").setup({ require("nvim-treesitter.configs").setup({
ensure_installed = { ensure_installed = {
"asm",
"bash", "bash",
"c", "c",
"cpp", "cpp",