tree
This commit is contained in:
parent
8dc4bf255c
commit
09c12d1e18
3 changed files with 15 additions and 0 deletions
15
nvim/lua/tree.lua
Normal file
15
nvim/lua/tree.lua
Normal 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' }
|
||||
)
|
||||
Binary file not shown.
Binary file not shown.
Loading…
Add table
Reference in a new issue