Skip to content

Commit

Permalink
Auto starting nvim-tree
Browse files Browse the repository at this point in the history
  • Loading branch information
gcaprio committed Nov 15, 2024
1 parent 6e605ca commit 4e62861
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lua/custom/plugins/nvim-tree.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ return {
},
config = function()
require('nvim-tree').setup {}
vim.api.nvim_create_autocmd('VimEnter', {
callback = function()
vim.cmd 'NvimTreeToggle'
end,
})
end,
},
}

0 comments on commit 4e62861

Please sign in to comment.