도움받은 사이트 : https://github.com/scrooloose/nerdtree/issues/85

 

NerdTree 사용할 때 오브젝트 파일과 같이 볼일 없는 파일은

.vimrc 파일에 아래와 같이 설정한다.

 

let NERDTreeIgnore=['.o$','.d$','.lo$']

 

그런데 위와 같이 하면 etc/init.d 와 같은 디렉토리까지 안보인다.

이에 아래와 같이 [[file]] 을 붙여주면 file 만 적용되게 된다.

let NERDTreeIgnore=['.o$','.d$[[file]]','.lo$']

 

만약 디렉토리만 ignore 에 추가하려면 [[dir]] 을 붙여준다.

+ Recent posts