|
|
|
@ -231,13 +231,17 @@ Bundle 'msanders/snipmate.vim'
|
|
|
|
|
|
|
|
|
|
" fuzzy file open |
|
|
|
|
Bundle 'kien/ctrlp.vim' |
|
|
|
|
" Bundle "unite.vim" |
|
|
|
|
|
|
|
|
|
" fuzzy function search (based on ctrlp) |
|
|
|
|
Bundle 'tacahiroy/ctrlp-funky' |
|
|
|
|
|
|
|
|
|
" select multiple strings at the same time |
|
|
|
|
Bundle 'terryma/vim-multiple-cursors' |
|
|
|
|
|
|
|
|
|
" colorscheme |
|
|
|
|
Bundle 'croaker/mustang-vim' |
|
|
|
|
Bundle 'altercation/vim-colors-solarized' |
|
|
|
|
" Bundle 'altercation/vim-colors-solarized' |
|
|
|
|
|
|
|
|
|
" Autocomplete |
|
|
|
|
" Bundle 'ervandew/supertab' |
|
|
|
@ -307,7 +311,7 @@ set tabline=%!PowerTabLine()
|
|
|
|
|
" let g:Powerline_symbols = 'unicode' |
|
|
|
|
|
|
|
|
|
" ---------------------------------------------------------------------- |
|
|
|
|
" Airline configuration (currently disabled) |
|
|
|
|
" Airline configuration |
|
|
|
|
" ---------------------------------------------------------------------- |
|
|
|
|
let g:airline_powerline_fonts = 1 |
|
|
|
|
" let g:airline_theme = 'solarized' |
|
|
|
@ -315,3 +319,15 @@ let g:airline_theme = 'powerlineish'
|
|
|
|
|
let g:airline_detect_whitespace=0 "disabled |
|
|
|
|
let g:airline_enable_branch = 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> |
|
|
|
|