# HG changeset patch # User Ludovic Chabant # Date 1440392103 25200 # Node ID b0b868bb0d44153ecf732fa78150d73a50f3106e # Parent 8f49f36b76efb4e49e7743199c35202a79908226 More vim changes. diff -r 8f49f36b76ef -r b0b868bb0d44 vim/vimrc --- a/vim/vimrc Mon Aug 10 18:33:09 2015 -0700 +++ b/vim/vimrc Sun Aug 23 21:55:03 2015 -0700 @@ -134,7 +134,13 @@ " Better command-line completion, but don't show some " stuff we don't care about. set wildmenu -set wildignore+=.DS_Store,Thumbs.db,*.so,*.dll,*.exe,*.lib,*.pdb,*.pyc,*.pyo +set wildmode=list:longest +set wildignore+=.DS_Store,Thumbs.db +set wildignore+=*.so,*.dll,*.exe,*.lib,*.pdb +set wildignore+=*.pyc,*.pyo +set wildignore+=*.swp + +set formatoptions=croqn1 " Always display the tab-page line. set showtabline=2 @@ -246,6 +252,9 @@ " Remember things. let g:ctrlp_clear_cache_on_ext = 0 +" Don't include some stuff in the most recently used list. +let g:ctrlp_mruf_exclude = 'hg\-editor\-\d+\.txt' + " Enable some cool extensions. let g:ctrlp_extensions = [ \'tag', 'buffertag', 'quickfix', 'mixed', 'bookmarkdir',