aboutsummaryrefslogtreecommitdiff
path: root/lua/kickstart/plugins/neo-tree.lua
diff options
context:
space:
mode:
authorDamjan 9000 <damjan.9000@gmail.com>2024-04-17 23:08:09 +0200
committerDamjan 9000 <damjan.9000@gmail.com>2024-04-17 23:08:09 +0200
commit3d2daa7965e931b75679e435e91a49424d5168c2 (patch)
treedaf3d5d2afb803920c364cbe3a22421e7e16f54e /lua/kickstart/plugins/neo-tree.lua
parentb6b33e61a49b162c22af5355239bfeca368dee1c (diff)
parent5e258d276fef52cc45a17021dc83a95748a0bc7f (diff)
Merge 'upstream' Move plugin examples from README to optional plugin files
Diffstat (limited to 'lua/kickstart/plugins/neo-tree.lua')
-rw-r--r--lua/kickstart/plugins/neo-tree.lua25
1 files changed, 25 insertions, 0 deletions
diff --git a/lua/kickstart/plugins/neo-tree.lua b/lua/kickstart/plugins/neo-tree.lua
new file mode 100644
index 0000000..c793b88
--- /dev/null
+++ b/lua/kickstart/plugins/neo-tree.lua
@@ -0,0 +1,25 @@
+-- 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<CR>', { desc = 'NeoTree reveal' } },
+ },
+ opts = {
+ filesystem = {
+ window = {
+ mappings = {
+ ['\\'] = 'close_window',
+ },
+ },
+ },
+ },
+}