mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 04:21:03 +00:00
21 lines
555 B
Lua
21 lines
555 B
Lua
if true then return {} end
|
|
|
|
return {
|
|
{
|
|
"nvim-tree/nvim-tree.lua",
|
|
dependencies = { "nvim-tree/nvim-web-devicons" },
|
|
keys = {
|
|
{ "<leader>fe", function() vim.cmd([[NvimTreeToggle]]) end, mode = { "n", "t" }, desc = "Toggle nvim-tree" },
|
|
{ "<C-f>", function() vim.cmd([[NvimTreeFindFile]]) end, desc = "Show current file in nvim-tree" },
|
|
},
|
|
config = function()
|
|
require("nvim-tree").setup({
|
|
actions = {
|
|
open_file = {
|
|
resize_window = false,
|
|
},
|
|
},
|
|
})
|
|
end,
|
|
},
|
|
}
|