aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/neotree.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/plugins/neotree.lua')
-rw-r--r--nvim/lua/plugins/neotree.lua14
1 files changed, 0 insertions, 14 deletions
diff --git a/nvim/lua/plugins/neotree.lua b/nvim/lua/plugins/neotree.lua
deleted file mode 100644
index b2322a971..000000000
--- a/nvim/lua/plugins/neotree.lua
+++ /dev/null
@@ -1,14 +0,0 @@
-return {
- {
- "nvim-neo-tree/neo-tree.nvim",
- branch = "v1.x",
- dependencies = {
- "nvim-lua/plenary.nvim",
- "nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
- "MunifTanjim/nui.nvim"
- },
- config = function()
- vim.keymap.set('n','<C-n>', ':Neotree toggle<CR>', {})
- end
- }
-}