first commit
This commit is contained in:
commit
02f0def35e
16 changed files with 422 additions and 0 deletions
13
lua/plugins/neotree.lua
Normal file
13
lua/plugins/neotree.lua
Normal file
|
@ -0,0 +1,13 @@
|
|||
local neotree = require 'neo-tree'
|
||||
|
||||
neotree.setup({
|
||||
event_handlers = {
|
||||
{
|
||||
event = "file_opened",
|
||||
handler = function(file_path)
|
||||
--auto close
|
||||
require("neo-tree").close_all()
|
||||
end
|
||||
},
|
||||
}
|
||||
})
|
Reference in a new issue