Created
January 10, 2013 10:28
-
-
Save violetyk/4501067 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" ctrlp.vim {{{ | |
NeoBundle 'kien/ctrlp.vim' | |
let g:ctrlp_by_filename = 1 " フルパスではなくファイル名のみで絞込み | |
let g:ctrlp_jump_to_buffer = 2 " タブで開かれていた場合はそのタブに切り替える | |
let g:ctrlp_clear_cache_on_exit = 0 " 終了時キャッシュをクリアしない | |
let g:ctrlp_mruf_max = 500 " MRUの最大記録数 | |
" let g:ctrlp_highlight_match = [1, 'IncSearch'] " 絞り込みで一致した部分のハイライト | |
let g:ctrlp_open_new_file = 1 " 新規ファイル作成時にタブで開く | |
let g:ctrlp_open_multi = '10t' " 複数ファイルを開く時にタブで最大10まで開く | |
let g:ctrlp_max_height = 30 | |
" let g:ctrlp_max_height = &lines | |
" }}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment