Skip to content

Commit

Permalink
chore: Assembly
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotcourant committed Nov 29, 2023
1 parent 082572b commit 9c679c3
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions nvim/lua/user/autocomplete.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ require("mason").setup {}
require("mason-lspconfig").setup {
ensure_installed = {
"ansiblels",
"asm_lsp",
"bashls",
"clangd",
"clojure_lsp",
Expand Down Expand Up @@ -191,6 +192,14 @@ local lsp_flags = {
debounce_text_changes = 150,
}

require('lspconfig')['asm_lsp'].setup {
capabilities = capabilities,
on_attach = on_attach,
flags = lsp_flags,
settings = { },
handlers = { }
}

require('lspconfig')['gopls'].setup {
capabilities = capabilities,
on_attach = on_attach,
Expand Down

0 comments on commit 9c679c3

Please sign in to comment.