14 lines
276 B
VimL
14 lines
276 B
VimL
vim9script
|
|
|
|
tui#core#plug#Regist('preservim/nerdtree', {
|
|
deps: [
|
|
'ryanoasis/vim-devicons',
|
|
'tiagofumo/vim-nerdtree-syntax-highlight',
|
|
],
|
|
config: () => {
|
|
final g:NERDTreeFileLines = 1
|
|
nnoremap <SPACE>vf :NERDTreeToggle<CR>
|
|
}
|
|
})
|
|
|