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

@@ -1,9 +1,9 @@
return { return {
settings = { settings = {
yaml = { yaml = {
schemaStore = { -- schemaStore = {
enable = true -- enable = true
}, -- },
format = { format = {
enable = true, enable = true,
singleQuote = true singleQuote = true

View File

@@ -35,6 +35,6 @@ return {
}) })
vim.lsp.enable('gdscript') vim.lsp.enable('gdscript')
vim.lsp.enable('cfn-lint') -- vim.lsp.enable('cfn-lint')
end end
} }

View File

@@ -2,6 +2,13 @@ return {
'nvim-lualine/lualine.nvim', 'nvim-lualine/lualine.nvim',
config = function() config = function()
require('lualine').setup { require('lualine').setup {
-- options = {
-- component_separators = { left = '\\', right = '/' },
-- component_separators = { left = '', right = '' },
-- section_separators = { left = '', right = '' },
-- globalstatus = true,
-- theme = 'gruvbox',
-- },
tabline = { tabline = {
lualine_a = { lualine_a = {
'tabs', 'tabs',

View File

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

View File

@@ -2,7 +2,7 @@ return {
'mfussenegger/nvim-lint', 'mfussenegger/nvim-lint',
config = function() config = function()
require('lint').linters_by_ft = { require('lint').linters_by_ft = {
yaml = {'cfn-lint'} -- yaml = {'cfn-lint'}
} }
end, end,
} }

View File

@@ -24,7 +24,7 @@ return {
Keyword arguments: Keyword arguments:
{} () - {} () -
Returns: Return:
{} - {} {} - {}
''' '''
]], { ]], {
@@ -33,12 +33,12 @@ return {
l(l.LS_TSCAPTURE_RETURN), l(l.LS_TSCAPTURE_RETURN),
l(l.LS_TSDATA), l(l.LS_TSDATA),
})), })),
s( -- s(
{ trig = "thingy" }, -- { trig = "thingy" },
{ t('Woot!') } -- { t('Woot!') }
), -- ),
s( -- s(
{ trig = 'thingy2' }, -- { trig = 'thingy2' },
{ t('Woot2!') } -- { t('Woot2!') }
) -- )
} }