mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-07 11:35:06 +02:00
13 lines
235 B
Lua
13 lines
235 B
Lua
return {
|
|
'preservim/nerdtree',
|
|
version = '*',
|
|
dependencies = {
|
|
'ryanoasis/vim-devicons',
|
|
},
|
|
keys = {
|
|
{ '<leader>n', '<cmd>NERDTreeToggle<cr>' },
|
|
},
|
|
init = function()
|
|
vim.g.NERDTreeShowLineNumbers = 1
|
|
end,
|
|
}
|