removed lsp-zero and reconfigured lsp. setup cmp more throughly. added snippets. made packer file a bit more organized.

This commit is contained in:
2025-06-08 00:09:28 -05:00
parent b69040fda0
commit 01b58f09b7
10 changed files with 235 additions and 85 deletions

View File

@@ -0,0 +1,8 @@
local ok, null_ls = pcall(require, 'null-ls')
if ok then
null_ls.setup({
sources = {
null_ls.builtins.diagnostics.markdownlint_cli2,
},
})
end