Deeplearning/lua/neovim/plugsettings/nvimtree.lua

23 lines
428 B
Lua

return {
'kyazdani42/nvim-web-devicons',
{
'kyazdani42/nvim-tree.lua',
config = function ()
G.map({
{"n", "<c-e>", ":NvimTreeToggle<CR>", {noremap = true}},
})
require'nvim-tree'.setup {
sort_by = "case_sensitive",
view = { width = 30, },
filters = { dotfiles = true, },
git = { enable = true },
-- on_attach = my_on_attach,
}
end
}
}