neovim: Fix neo-tree window width config

This commit is contained in:
Peter Cai 2022-08-08 15:19:57 -04:00
parent 9f75d943b3
commit ebb90199fc
1 changed files with 3 additions and 5 deletions

View File

@ -42,11 +42,9 @@ return require('packer').startup(function(use)
"MunifTanjim/nui.nvim",
},
config = function() require("neo-tree").setup({
default_component_configs = {
window = {
position = "left",
width = 64,
},
window = {
position = "left",
width = 36,
},
}) end,
}