From 2161fcd901ee43b81d7e51d7a27a13e0b5c356cc Mon Sep 17 00:00:00 2001 From: iGor milhit Date: Tue, 30 Jan 2024 14:51:05 +0100 Subject: [PATCH] plugins: set neotree width Co-Authored-by: iGor milhit --- lua/custom/plugins/neo-tree.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lua/custom/plugins/neo-tree.lua b/lua/custom/plugins/neo-tree.lua index d26c0bd..71a5081 100644 --- a/lua/custom/plugins/neo-tree.lua +++ b/lua/custom/plugins/neo-tree.lua @@ -13,6 +13,10 @@ return { "MunifTanjim/nui.nvim", }, config = function () - require('neo-tree').setup {} + require('neo-tree').setup { + window = { + width = 36 + } + } end, }