1
1
Fork 0
This commit is contained in:
Gaiety 2026-04-04 20:30:43 -06:00
parent 8dc4bf255c
commit 09c12d1e18
3 changed files with 15 additions and 0 deletions

15
nvim/lua/tree.lua Normal file
View file

@ -0,0 +1,15 @@
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
vim.pack.add({
'https://github.com/nvim-tree/nvim-tree.lua',
})
require('nvim-tree').setup()
-- Keys
vim.keymap.set('n',
'`',
'<cmd>NvimTreeToggle<cr>',
{ desc = 'File Tree' }
)