mirror of https://github.com/E-Almqvist/dotfiles
commit
4a569492b0
@ -1,18 +1,18 @@ |
|||||||
local on_attach = require("plugins.configs.lspconfig").on_attach |
local on_attach = require("plugins.configs.lspconfig").on_attach |
||||||
local capabilities = require("plugins.configs.lspconfig").capabilities |
local capabilities = require("plugins.configs.lspconfig").capabilities |
||||||
|
|
||||||
local lspconfig = require "lspconfig" |
local lspconfig = require("lspconfig") |
||||||
|
|
||||||
-- if you just want default config for the servers then put them in a table |
-- if you just want default config for the servers then put them in a table |
||||||
local servers = { "html", "cssls", "tsserver", "clangd", "ghdl_ls", "bashls", "prismals", "pyright" } |
local servers = { "html", "cssls", "tsserver", "clangd", "ghdl_ls", "bashls", "prismals", "pyright", "hls" } |
||||||
|
|
||||||
for _, lsp in ipairs(servers) do |
for _, lsp in ipairs(servers) do |
||||||
lspconfig[lsp].setup { |
lspconfig[lsp].setup({ |
||||||
on_attach = on_attach, |
on_attach = on_attach, |
||||||
capabilities = capabilities, |
capabilities = capabilities, |
||||||
} |
}) |
||||||
end |
end |
||||||
|
|
||||||
-- |
-- |
||||||
-- lspconfig.pyright.setup { blabla} |
-- lspconfig.pyright.setup { blabla} |
||||||
-- |
-- |
||||||
|
Loading…
Reference in new issue