1
0

Split plugins into files by category

This commit is contained in:
2025-09-21 18:21:43 +02:00
parent f33ecb78ee
commit 78698d82e6
13 changed files with 259 additions and 267 deletions

View File

@@ -29,3 +29,10 @@ function default_on_attach(client, bufnr)
nnoremap('gr', vim.lsp.buf.references, "Find references")
nnoremap('<space>f', function() vim.lsp.buf.format { async = true } end, "Format file")
end
-- Setup lspconfig.
capabilities = require('cmp_nvim_lsp').default_capabilities(vim.lsp.protocol.make_client_capabilities())
capabilities.textDocument.foldingRange = {
dynamicRegistration = false,
lineFoldingOnly = true
}