From 7df6a3e5e85de2a847f1ade3f5b1086a68d2ff06 Mon Sep 17 00:00:00 2001 From: aminnairi <18418459+aminnairi@users.noreply.github.com> Date: Wed, 3 Jan 2024 18:07:49 +0100 Subject: [PATCH] enabling generally diagnostics for the tree --- .../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 79f7050..e1fe33d 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 @@ -135,6 +135,9 @@ return { -- Focus the file in the tree whenever it is focused in the editor enable = true }, + diagnostics = { + -- Enable diagnostics for the tree + enable = true, }) local whichKey = require("which-key")