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, 14 insertions, 0 deletions
diff --git a/nvim/lua/plugins/neotree.lua b/nvim/lua/plugins/neotree.lua
new file mode 100644
index 000000000..b2322a971
--- /dev/null
+++ b/nvim/lua/plugins/neotree.lua
@@ -0,0 +1,14 @@
+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
+ }
+}