1. Vuldle
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'The-NERD-tree'
Plugin 'ctrlpvim/ctrlp.vim'
call vundle#end()
3. Tab and Space Optimize
highlight ExtraWhiteSpace ctermbg=red guibg=red "Extra White Space 빨간색 표시
match ExtraWhiteSpace /\s\+$/
set list listchars=tab:→\ "Tab 문자 화살표 표시
4. CtrlP 옵션
let g:ctrlp_custom_ignore = {
\ 'dir': '\v[\/](\.(git|hg|svn)|\_site)$',
\ 'file': '\v\.(exe|so|dll|class|png|jpg|jpeg|o)$',
\}
let g:ctrlp_by_filename = 1
let g:ctrlp_regexp = 1
let g:ctrlp_match_window = 'bottom,order:btt,min:1,max:100,results:100'
let g:ctrlp_max_files = 0
let g:ctrlp_working_path_mode = ''
let g:ctrlp_max_files = 0
let g:ctrlp_working_path_mode = 0
set wildignore+=*/tags
VIM이 젤조음
'개발, 웹, 블로그 > Linux 상식' 카테고리의 다른 글
git svn 이용(SVN Repository를 Git으로 Migration) (0) | 2018.10.30 |
---|---|
[간단Shell명령어] 파일 찾아 일괄 치환 (0) | 2017.12.14 |
date 명령어 정리 (0) | 2017.11.07 |