Browse Source

using CtrlPFunky for function search

master
Julio Biason 11 years ago
parent
commit
f14c9ee1c1
  1. 20
      configs/vimrc

20
configs/vimrc

@ -231,13 +231,17 @@ Bundle 'msanders/snipmate.vim'
" fuzzy file open " fuzzy file open
Bundle 'kien/ctrlp.vim' Bundle 'kien/ctrlp.vim'
" Bundle "unite.vim"
" fuzzy function search (based on ctrlp)
Bundle 'tacahiroy/ctrlp-funky'
" select multiple strings at the same time " select multiple strings at the same time
Bundle 'terryma/vim-multiple-cursors' Bundle 'terryma/vim-multiple-cursors'
" colorscheme " colorscheme
Bundle 'croaker/mustang-vim' Bundle 'croaker/mustang-vim'
Bundle 'altercation/vim-colors-solarized' " Bundle 'altercation/vim-colors-solarized'
" Autocomplete " Autocomplete
" Bundle 'ervandew/supertab' " Bundle 'ervandew/supertab'
@ -307,7 +311,7 @@ set tabline=%!PowerTabLine()
" let g:Powerline_symbols = 'unicode' " let g:Powerline_symbols = 'unicode'
" ---------------------------------------------------------------------- " ----------------------------------------------------------------------
" Airline configuration (currently disabled) " Airline configuration
" ---------------------------------------------------------------------- " ----------------------------------------------------------------------
let g:airline_powerline_fonts = 1 let g:airline_powerline_fonts = 1
" let g:airline_theme = 'solarized' " let g:airline_theme = 'solarized'
@ -315,3 +319,15 @@ let g:airline_theme = 'powerlineish'
let g:airline_detect_whitespace=0 "disabled let g:airline_detect_whitespace=0 "disabled
let g:airline_enable_branch = 1 let g:airline_enable_branch = 1
let g:airline_enable_syntastic = 1 let g:airline_enable_syntastic = 1
" ----------------------------------------------------------------------
" Unite configuration (disabled)
" ----------------------------------------------------------------------
" let g:unite_split_rule = "bottomleft"
let g:unite_winheight = 10
" ----------------------------------------------------------------------
" CtrlP and extensions configuration
" ----------------------------------------------------------------------
let g:ctrlp_extensions = ['funky']
nnoremap <C-O> :CtrlPFunky<CR>

Loading…
Cancel
Save