This repository has been archived on 2021-12-21. You can view files and clone it, but cannot push or open issues/pull-requests.
neovim-config/init/nerdtree.vim

27 lines
643 B
VimL

" Vim
" Other IDEs
" Python
" Java
" Git
" Stack & Haskell
" CMake
" Non-text files
let NERDTreeIgnore = [
\ '^\.vim$',
\ '^\.vscode$', '.*\.code-workspace$', '^\.idea$',
\ '^__pycache__$', '^\.pytest_cache$', '^venv$', '\.egg-info$', '^dist$', '^build$', '^\.eggs$',
\ '^out$',
\ '^\.git$',
\ '^\.stack-work$', '\.lock$',
\ '^CMakeFiles$', '^CMakeCache.txt$',
\ '.pdf$']
" Show files starting with .
let NERDTreeShowHidden = 1
" Hide 'Press ? for help'
let NERDTreeMinimalUI = 1
let NERDTreeDirArrows = 1
" Close NERDTree after opening a file
let NERDTreeQuitOnOpen = 1
nnoremap <silent> tt :NERDTreeFind<CR>