From 93f5c4eeee2ad720479947b416f7165abca9c3b4 Mon Sep 17 00:00:00 2001 From: w34164 Date: Thu, 17 Jul 2025 12:22:19 +0200 Subject: [PATCH] Updating ansiblels config --- lua/default/lazy/lsp.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/default/lazy/lsp.lua b/lua/default/lazy/lsp.lua index 0b0dcef..08719b5 100644 --- a/lua/default/lazy/lsp.lua +++ b/lua/default/lazy/lsp.lua @@ -53,12 +53,12 @@ return { executionEnvironment = { enabled = false }, validation = { enabled = false, --- lint = { enabled = true, path = 'ansible-lint' }, + lint = { enabled = true, path = 'ansible-lint' }, }, }, }, filetypes = { 'yaml', 'yml', 'ansible' }, - root_dir = lspconfig.util.root_pattern("roles", "playbooks", "Documents"), + root_dir = lspconfig.util.root_pattern("roles", "playbooks"), single_file_support = false, }) end,