a59166904d96

Use friendly-find!
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Sat, 29 Sep 2012 14:13:17 -0400
parents 2d2e9a71f334
children 055d8ae6e26f
branches/tags (none)
files bin/bootstrap.sh ffignore vim/vimrc

Changes

--- a/bin/bootstrap.sh	Sat Sep 29 13:06:33 2012 -0400
+++ b/bin/bootstrap.sh	Sat Sep 29 14:13:17 2012 -0400
@@ -38,6 +38,7 @@
 ensure_link "lib/dotfiles/dotjs"               ".js"
 ensure_link "lib/dotfiles/dotcss"              ".css"
 ensure_link "lib/dotfiles/hgignore"            ".hgignore"
+ensure_link "lib/dotfiles/ffignore"            ".ffignore"
 ensure_link "lib/dotfiles/ctags"               ".ctags"
 ensure_link "lib/dotfiles/grc"                 ".grc"
 ensure_link "lib/dotfiles/fish/config.fish"    ".config/fish/config.fish"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ffignore	Sat Sep 29 14:13:17 2012 -0400
@@ -0,0 +1,2 @@
+syntax:literal
+.DS_Store
--- a/vim/vimrc	Sat Sep 29 13:06:33 2012 -0400
+++ b/vim/vimrc	Sat Sep 29 14:13:17 2012 -0400
@@ -828,7 +828,7 @@
     " Use <localleader>1/2/3 to add headings.
     au Filetype markdown nnoremap <buffer> <localleader>1 yypVr=:redraw<cr>
     au Filetype markdown nnoremap <buffer> <localleader>2 yypVr-:redraw<cr>
-    au Filetype markdown nnoremap <buffer> <localleader>3 mzI### `zllll <ESC>
+    au Filetype markdown nnoremap <buffer> <localleader>3 mzI###<space>`zllll <ESC>
 augroup END
 
 " }}}
@@ -1045,7 +1045,7 @@
 
 let my_ctrlp_ffind_command = "ffind --semi-restricted --dir %s --type e -B -f"
 
-let g:ctrlp_user_command = ['.git/', my_ctrlp_ffind_command, my_ctrlp_user_command]
+let g:ctrlp_user_command = ['.git/', my_ctrlp_ffind_command, my_ctrlp_ffind_command]
 
 nnoremap <leader>. :CtrlPTag<cr>