dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit 94c31c01c8c793ffce68dda1fe411a89624e2bf9
parent afe8fe4b7468924f557526a5788d3ad1a741922b
Author: Chris Bracken <chris@bracken.jp>
Date:   Sat, 24 May 2014 11:33:22 -0700

Exclude .o, .pyc file from wild-matching

Diffstat:
M.vim/vimrc | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/.vim/vimrc b/.vim/vimrc @@ -48,6 +48,7 @@ set showmatch " Flash matching paren set history=50 " 50 lines of cmdline history set wildmenu " Nicer autocomplete set wildmode=longest,full +set wildignore=*.o,*.pyc " Omnicomplete set completeopt+=longest