From 04209e4b53aec0f4ee826e6395a27ae36f6aea8a Mon Sep 17 00:00:00 2001 From: FaultyBranches Date: Thu, 2 Apr 2026 09:53:47 -0500 Subject: [PATCH] feat: Working on making CloudFormation and yaml linting. --- nvim/after/lsp/yamlls.lua | 9 +++++++++ nvim/lua/plugins/lspconfig.lua | 1 + nvim/lua/plugins/mason.lua | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 nvim/after/lsp/yamlls.lua diff --git a/nvim/after/lsp/yamlls.lua b/nvim/after/lsp/yamlls.lua new file mode 100644 index 0000000..fad7dde --- /dev/null +++ b/nvim/after/lsp/yamlls.lua @@ -0,0 +1,9 @@ +return { + settings = { + yaml = { + schemaStore = { + enable = true + } + } + } +} diff --git a/nvim/lua/plugins/lspconfig.lua b/nvim/lua/plugins/lspconfig.lua index 6716e70..eafa1fa 100644 --- a/nvim/lua/plugins/lspconfig.lua +++ b/nvim/lua/plugins/lspconfig.lua @@ -36,5 +36,6 @@ return { }) vim.lsp.enable('gdscript') + vim.lsp.enable('cfn-lint') end } diff --git a/nvim/lua/plugins/mason.lua b/nvim/lua/plugins/mason.lua index 8634c65..2f8c577 100644 --- a/nvim/lua/plugins/mason.lua +++ b/nvim/lua/plugins/mason.lua @@ -10,7 +10,7 @@ return { 'ansiblels', -- Ansible 'arduino_language_server', -- Arduino specific C 'bashls', -- Bash - 'cfn-lint', -- Cloudformation for AWS + -- 'cfn-lint', -- Cloudformation for AWS 'clangd', -- C/C++ 'intelephense', -- PHP 'lua_ls', -- Lua