From d3a56f651319a2ff0f0f5a38240eaae9ad7aed39 Mon Sep 17 00:00:00 2001 From: Alexander Roso Date: Mon, 9 Feb 2026 09:08:13 +0100 Subject: [PATCH] Add nvim-tree --- init.lua | 2 ++ lua/plugins/tree.lua | 5 +++++ 2 files changed, 7 insertions(+) create mode 100644 lua/plugins/tree.lua diff --git a/init.lua b/init.lua index 1817189..c4db6e5 100644 --- a/init.lua +++ b/init.lua @@ -1,3 +1,5 @@ +vim.g.loaded_netrw = 1 +vim.g.loaded_netrwPlugin = 1 local should_profile = os.getenv("NVIM_PROFILE") if should_profile then require("profile").instrument_autocmds() diff --git a/lua/plugins/tree.lua b/lua/plugins/tree.lua new file mode 100644 index 0000000..5d7ae95 --- /dev/null +++ b/lua/plugins/tree.lua @@ -0,0 +1,5 @@ +return { + "nvim-tree/nvim-tree.lua", + dependencies = { "nvim-tree/nvim-web-devicons" }, + config = true +}