kickstart.nvim/after/plugin/neo-tree.lua

9 lines
294 B
Lua
Raw Normal View History

2024-10-20 03:38:56 -03:00
-- Autocmd to open Neo-tree automatically on startup
2024-10-27 04:05:27 -03:00
-- vim.api.nvim_create_autocmd("VimEnter", {
-- callback = function()
-- if vim.fn.isdirectory(vim.fn.getcwd()) == 1 then
-- require('neo-tree.command').execute({ toggle = false, dir = vim.loop.cwd() })
-- end
-- end
-- })