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)
on_attach(client, bufnr)

View File

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