aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/neotree.lua
diff options
context:
space:
mode:
authorIndrajith K L2025-11-23 19:20:09 +0530
committerIndrajith K L2025-11-23 19:20:09 +0530
commit8453bb64d330ba4bbb268e2593e95a86477eec1c (patch)
treef9e829365139031dfa938e832f9a05e3536a8e36 /nvim/lua/plugins/neotree.lua
parent1ff9a983329b0e703511e78cd81dcbe81358733f (diff)
downloaddots-niri.tar.gz
dots-niri.tar.bz2
dots-niri.zip
Dot File for niri Desktopniri
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
- }
-}