Merge pull request #40 from SergioRibera/main

Bug fix when executing any packer command and Add Clang LSP
This commit is contained in:
siduck76 2021-05-07 13:46:26 +05:30 committed by GitHub
commit 47abfe3acd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View File

@ -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 {

View File

@ -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 = { "", "", "", "", "", "", "", "" }
}
}
) )