Merge pull request #40 from SergioRibera/main
Bug fix when executing any packer command and Add Clang LSP
This commit is contained in:
commit
47abfe3acd
|
@ -36,7 +36,7 @@ function on_attach(client)
|
||||||
end
|
end
|
||||||
|
|
||||||
local lspconf = require "lspconfig"
|
local lspconf = require "lspconfig"
|
||||||
local servers = {"html", "cssls", "tsserver", "pyright", "bashls", "vls"}
|
local servers = {"html", "cssls", "tsserver", "pyright", "bashls", "vls", "clangd", "ccls}
|
||||||
|
|
||||||
for k, lang in pairs(servers) do
|
for k, lang in pairs(servers) do
|
||||||
lspconf[lang].setup {
|
lspconf[lang].setup {
|
||||||
|
|
|
@ -48,5 +48,10 @@ return require("packer").startup(
|
||||||
|
|
||||||
|
|
||||||
use {"lukas-reineke/indent-blankline.nvim", branch = "lua"}
|
use {"lukas-reineke/indent-blankline.nvim", branch = "lua"}
|
||||||
end
|
end,
|
||||||
|
{
|
||||||
|
display = {
|
||||||
|
border = { "┌", "─", "┐", "│", "┘", "─", "└", "│" }
|
||||||
|
}
|
||||||
|
}
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue