Actually Stowing Files

This commit is contained in:
ayushDumasia 2024-09-18 00:20:46 +05:30
parent 0f42a6b9c3
commit 500aecaea1
752 changed files with 1 additions and 67593 deletions

View file

@ -1,38 +0,0 @@
return {
"nvim-neo-tree/neo-tree.nvim",
branch = "v3.x",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons",
"MunifTanjim/nui.nvim",
},
keys = {
{
"<C-e>",
function()
vim.cmd("Neotree toggle left")
end,
desc = "Toggle Neo-tree",
},
},
opts = {
filesystem = {
filtered_items = {
visible = true,
hide_dotfiles = false, -- Show hidden files and folders
},
},
},
config = function()
require("neo-tree").setup({
filesystem = {
filtered_items = {
visible = true,
hide_dotfiles = false,
},
},
})
end,
}