This commit is contained in:
yyasha 2024-09-15 00:15:56 +03:00
parent 5ce9a6842d
commit 12aa3fb69f
2 changed files with 26 additions and 7 deletions

View File

@ -47,13 +47,7 @@ lspconfig.gopls.setup({
},
})
lspconfig.clangd.setup{
on_attach = function (client, bufnr)
client.server_capabilities.signatureHelpProvider = false
on_attach(client, bufnr)
end,
capabilities = capabilities
}
lspconfig.clangd.setup{}
-- typescript
-- lspconfig.tsserver.setup {

View File

@ -0,0 +1,25 @@
local augroup = vim.api.nvim_create_augroup("LspFormatting", {})
local null_ls = require("null-ls")
local opts = {
sources = {
null_ls.builtins.formatting.clang_format,
},
on_attach = function (client, bufnr)
if client.supports_method("textDocument/formatting") then
vim.api.nvim_clear_autocmds({
group = augroup,
buffer = bufnr,
})
vim.api.nvim_create_autocmd("BufWritePre", {
group = augroup,
buffer = bufnr,
callback = function ()
vim.lsp.buf.format({ bufnr = bufnr })
end
})
end
end
}
return opts