nvim: add variable values DAP plugin

This commit is contained in:
PowerUser64 2021-09-27 19:21:36 -07:00
parent 9776ecd7d2
commit e996dfedf0
2 changed files with 31 additions and 15 deletions

View file

@ -209,8 +209,10 @@ M.lspconfig = function()
-- Use a loop to conveniently call 'setup' on multiple servers and
-- map buffer local keybindings when the language server attaches
local lsp_servers = {
clangd = 'clangd',
html = 'vscode-html-language-server',
clangd = 'clangd',
html = 'vscode-html-language-server',
sumneko_lua = 'lua-language-server',
bashls = 'bash-language-server',
}
for lsp, exe in pairs(lsp_servers) do
if (vim.fn.executable(exe) == 1) then