Make neo-tree not lazy load

This commit is contained in:
Evie Litherland-Smith 2023-04-21 14:31:53 +01:00
parent 88beab55c6
commit 65193ed014
2 changed files with 1 additions and 3 deletions

View file

@ -6,8 +6,6 @@ return {
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
"MunifTanjim/nui.nvim",
},
cmd = "Neotree",
event = { "BufReadPre", "BufNewFile" },
config = function()
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1

View file

@ -1,5 +1,5 @@
return {
"ahmedkhalf/project.nvim",
event = { "BufReadPre", "BufNewFile" },
event = { "VimEnter", "BufReadPre", "BufNewFile" },
config = function() require("project_nvim").setup(require "config.project") end,
}