From bc49ee4649ed830e15f187fb7a97842cf6474c0e Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Sat, 1 Jun 2024 12:46:51 +0200 Subject: [PATCH] delete neo-tree config in retrospect in exchange for oil.nvim --- lua/kickstart/plugins/neo-tree.lua | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 lua/kickstart/plugins/neo-tree.lua diff --git a/lua/kickstart/plugins/neo-tree.lua b/lua/kickstart/plugins/neo-tree.lua deleted file mode 100644 index c793b88..0000000 --- a/lua/kickstart/plugins/neo-tree.lua +++ /dev/null @@ -1,25 +0,0 @@ --- Neo-tree is a Neovim plugin to browse the file system --- https://github.com/nvim-neo-tree/neo-tree.nvim - -return { - 'nvim-neo-tree/neo-tree.nvim', - version = '*', - dependencies = { - 'nvim-lua/plenary.nvim', - 'nvim-tree/nvim-web-devicons', -- not strictly required, but recommended - 'MunifTanjim/nui.nvim', - }, - cmd = 'Neotree', - keys = { - { '\\', ':Neotree reveal', { desc = 'NeoTree reveal' } }, - }, - opts = { - filesystem = { - window = { - mappings = { - ['\\'] = 'close_window', - }, - }, - }, - }, -}