From ca75729c7a4d7faa35ebe5ade287140f1c1e0a7a Mon Sep 17 00:00:00 2001 From: Gustavo Silva Date: Mon, 22 May 2023 17:21:00 +0200 Subject: [PATCH] add neo-tree --- lua/custom/plugins/init.lua | 5 ----- lua/custom/plugins/neo-tree.lua | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 5 deletions(-) delete mode 100644 lua/custom/plugins/init.lua create mode 100644 lua/custom/plugins/neo-tree.lua diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua deleted file mode 100644 index be0eb9d8..00000000 --- a/lua/custom/plugins/init.lua +++ /dev/null @@ -1,5 +0,0 @@ --- You can add your own plugins here or in other files in this directory! --- I promise not to create any merge conflicts in this directory :) --- --- See the kickstart.nvim README for more information -return {} diff --git a/lua/custom/plugins/neo-tree.lua b/lua/custom/plugins/neo-tree.lua new file mode 100644 index 00000000..4b2717e0 --- /dev/null +++ b/lua/custom/plugins/neo-tree.lua @@ -0,0 +1,17 @@ +-- You can add your own plugins here or in other files in this directory! +-- I promise not to create any merge conflicts in this directory :) +-- +-- See the kickstart.nvim README for more information + +return { + "nvim-neo-tree/neo-tree.nvim", + version = "*", + dependencies= { + "nvim-lua/plenary.nvim", + "nvim-tree/nvim-web-devicons", + "MunifTanjim/nui.nvim", + }, + config = function () + require('neo-tree').setup {} + end +}