From 72a53b67f1d64e0e11db7b5d50e0abfe8c5845b5 Mon Sep 17 00:00:00 2001 From: LordMZTE Date: Mon, 11 Oct 2021 00:48:23 +0200 Subject: [PATCH] fix nvimtree config --- .config/nvim/lua/pluginconf/nvimtree.lua | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.config/nvim/lua/pluginconf/nvimtree.lua b/.config/nvim/lua/pluginconf/nvimtree.lua index b2507ed..2778881 100644 --- a/.config/nvim/lua/pluginconf/nvimtree.lua +++ b/.config/nvim/lua/pluginconf/nvimtree.lua @@ -1,10 +1,12 @@ -require'nvim-tree'.setup { +require 'nvim-tree'.setup { -- don't open tree when using firenvim open_on_setup = not vim.g.started_by_firenvim, auto_close = true, - lsp_diagnostics = true, + diagnostics = { + enable = true, + }, view = { auto_resize = true, - } + }, }