Add Cattpucin theme and filetree width

This commit is contained in:
Andres 2023-05-20 18:41:32 +02:00
parent 2ddea28f3c
commit a2458313ea
2 changed files with 51 additions and 2 deletions

View file

@ -6,10 +6,14 @@ return {
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
"MunifTanjim/nui.nvim",
},
config = function ()
config = function()
-- Unless you are still migrating, remove the deprecated commands from v1.x
vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
require('neo-tree').setup {}
require('neo-tree').setup {
window = {
width = 24,
}
}
end,
}