From 2bb4ad2cdee0344a8723f72b16280c9e0df41cdd Mon Sep 17 00:00:00 2001 From: aminnairi <18418459+aminnairi@users.noreply.github.com> Date: Wed, 20 Dec 2023 17:13:29 +0100 Subject: [PATCH] now notifying only the relative path instead of the full path --- nvim/lua/settings/lazy/plugins/nvimtree.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nvim/lua/settings/lazy/plugins/nvimtree.lua b/nvim/lua/settings/lazy/plugins/nvimtree.lua index c2ec511..73f5e24 100644 --- a/nvim/lua/settings/lazy/plugins/nvimtree.lua +++ b/nvim/lua/settings/lazy/plugins/nvimtree.lua @@ -17,6 +17,10 @@ return { filters = { dotfiles = false, }, + notify = { + threshold = vim.log.levels.INFO, + absolute_path = true, + }, }) local whichKey = require("which-key")