pantheon/.config/nvim/lua/plugins/init.lua
2025-02-21 04:21:40 +08:00

14 lines
342 B
Lua

return { -- Lua table
"nvim-tree/nvim-tree.lua", -- github repo
version = "*", -- latest version
lazy = false, -- dont use lazy loading
dependencies = {
"nvim-tree/nvim-web-devicons",
},
config = function()
require("nvim-tree").setup {
hijack_cursor = true, -- makes cursor stick to first char
}
end,
}