From 29d86de08569fc0c86d2894390bf3dd5ee7ead93 Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Wed, 13 Sep 2023 16:09:49 +0200 Subject: [PATCH] Set nvim-tree loglevel to WARN --- lua/plugins/config/tree.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lua/plugins/config/tree.lua b/lua/plugins/config/tree.lua index aa3a4d0..99b7d5d 100644 --- a/lua/plugins/config/tree.lua +++ b/lua/plugins/config/tree.lua @@ -58,6 +58,10 @@ require("nvim-tree").setup({ filters = { custom = { "^\\.git$", }, }, + notify = { + threshold = vim.log.levels.WARN, + absolute_path = false, + }, }) local opts = { remap = false, silent = true, }