fix: Removing several bits that were superfluous or were causing issues.

Disabling nvim-lint and calls to cfn-lint for now. Found and removed the issue with
completion causing odd failures on expansion.
This commit is contained in:
2026-04-07 08:03:21 -05:00
parent 20b386f05c
commit dd63dfd57e
6 changed files with 28 additions and 27 deletions

View File

@@ -3,11 +3,6 @@ return {
config = function()
local cmp = require('cmp')
cmp.setup {
snippet = {
expand = function(args)
require('plugins.luasnip').lsp_expand(args.body)
end,
},
completion = {
completeopt = 'menu,menuone,noinsert',
},
@@ -51,7 +46,6 @@ return {
mapping = cmp.mapping.preset.cmdline(),
sources = cmp.config.sources({
{ name = 'path' },
-- { name = 'buffer' },
}, {
{ name = 'cmdline' },
})