Add nvim-tree

This commit is contained in:
Alexander Roso 2026-02-09 09:08:13 +01:00
parent c43196a300
commit d3a56f6513
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,5 @@
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
local should_profile = os.getenv("NVIM_PROFILE") local should_profile = os.getenv("NVIM_PROFILE")
if should_profile then if should_profile then
require("profile").instrument_autocmds() require("profile").instrument_autocmds()

5
lua/plugins/tree.lua Normal file
View file

@ -0,0 +1,5 @@
return {
"nvim-tree/nvim-tree.lua",
dependencies = { "nvim-tree/nvim-web-devicons" },
config = true
}