From 83b58a4052243a06f7ce5eefc95d8a657902c1d9 Mon Sep 17 00:00:00 2001 From: aminnairi <18418459+aminnairi@users.noreply.github.com> Date: Wed, 3 Jan 2024 18:07:57 +0100 Subject: [PATCH] showing diagnostics for the parent folder of the incriminated file --- .../neovim/files/nvim/lua/settings/lazy/plugins/nvimtree.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/nvimtree.lua b/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/nvimtree.lua index e1fe33d..82eaf74 100644 --- a/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/nvimtree.lua +++ b/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/nvimtree.lua @@ -138,6 +138,9 @@ return { diagnostics = { -- Enable diagnostics for the tree enable = true, + -- Show diagnostics for the parent folder of the incriminated file + show_on_dirs = true + } }) local whichKey = require("which-key")