This repository has been archived on 2021-12-21. You can view files and clone it, but cannot push or open issues/pull-requests.
2020-10-23 09:45:55 +02:00
|
|
|
" 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$']
|
2020-10-30 10:54:59 +01:00
|
|
|
" Show files starting with .
|
2020-08-28 09:15:08 +02:00
|
|
|
let NERDTreeShowHidden = 1
|
2020-10-30 10:54:59 +01:00
|
|
|
" Hide 'Press ? for help'
|
|
|
|
let NERDTreeMinimalUI = 1
|
|
|
|
let NERDTreeDirArrows = 1
|
|
|
|
" Close NERDTree after opening a file
|
|
|
|
let NERDTreeQuitOnOpen = 1
|
|
|
|
|
|
|
|
nnoremap <silent> tt :NERDTreeFind<CR>
|