Skip to content

Commit

Permalink
added optional better matching function. See colthorp-vimrc.vim for e…
Browse files Browse the repository at this point in the history
…xample
  • Loading branch information
dcolthorp committed Mar 1, 2014
1 parent 50d31c7 commit d17389a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions bundle/optional/ctrlp-cmatcher
Submodule ctrlp-cmatcher added at cfe5bf
12 changes: 8 additions & 4 deletions colthorp-vimrc.vim
Expand Up @@ -17,7 +17,7 @@ set laststatus=2

" let g:solarized_termcolors=256
" let g:solarized_termcolors=16
" set background=dark
" set background=light
colorscheme solarized
" colorscheme default

Expand All @@ -30,8 +30,11 @@ colorscheme solarized
let g:paredit_leader='\'

let optional = []
" let optional += ["vim-easymotion", "nerdtree", "vim-airline", "tagbar"]
let optional += ["vim-easymotion", "nerdtree", "tagbar", 'vim-airline']
let optional += ['vim-easymotion', 'nerdtree', 'tagbar', 'vim-airline']

let optional += ['ctrlp-cmatcher']
let g:ctrlp_match_func = {'match' : 'matcher#cmatch' }

call optional#include(optional)

" clojure configuration
Expand Down Expand Up @@ -64,6 +67,7 @@ let g:airline#extensions#default#section_truncate_width = {

let g:airline#extensions#default#layout = [
\ [ 'a', 'c' ],
\ [ 'x', 'b', 'y', 'z', 'warning' ]
\ [ 'x', 'b', 'z']
\ ]

" 'y', 'z', 'warning']

0 comments on commit d17389a

Please sign in to comment.