mirror of https://github.com/tiyn/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
507 B
31 lines
507 B
return {
|
|
-- fileexplorer on the side
|
|
{
|
|
"nvim-tree/nvim-tree.lua",
|
|
cmd = "NvimTreeToggle",
|
|
dependencies = {
|
|
{
|
|
"nvim-tree/nvim-web-devicons",
|
|
lazy = true
|
|
},
|
|
},
|
|
opts = {
|
|
sort_by = "case_sensitive",
|
|
view = {
|
|
width = 30,
|
|
},
|
|
filters = {
|
|
dotfiles = true,
|
|
},
|
|
renderer = {
|
|
group_empty = true,
|
|
icons = {
|
|
glyphs = {
|
|
git = Git_signs
|
|
},
|
|
},
|
|
}
|
|
}
|
|
}
|
|
}
|