diff --git a/lua/custom/plugins/nvim-tree.lua b/lua/custom/plugins/nvim-tree.lua new file mode 100644 index 00000000..f37c9de2 --- /dev/null +++ b/lua/custom/plugins/nvim-tree.lua @@ -0,0 +1,11 @@ +return { + 'nvim-tree/nvim-tree.lua', + version = '*', + lazy = false, + dependencies = { + 'nvim-tree/nvim-web-devicons', + }, + config = function() + require('nvim-tree').setup {} + end, +} diff --git a/lua/lazy-plugins.lua b/lua/lazy-plugins.lua index d5a0f117..72292d8e 100644 --- a/lua/lazy-plugins.lua +++ b/lua/lazy-plugins.lua @@ -51,6 +51,8 @@ require('lazy').setup({ require 'custom/plugins/oil', + require 'custom/plugins/nvim-tree', + -- require 'custom/plugins/markview', -- The following two comments only work if you have downloaded the kickstart repo, not just copy pasted the