Remap leader, add fuzzyfinder.
author |
Steve Losh <steve@stevelosh.com> |
date |
Tue, 11 May 2010 22:32:18 -0400 |
parents |
5217b5c50200
|
children |
fb6a8ddaea46
|
branches/tags |
(none) |
files |
vim/.vimrc |
Changes
--- a/vim/.vimrc Tue May 11 16:04:09 2010 -0400
+++ b/vim/.vimrc Tue May 11 22:32:18 2010 -0400
@@ -12,6 +12,30 @@
set autoindent
set smartindent
+set showmode
+set showcmd
+set hidden
+set wildmenu
+set wildmode=list:longest
+set visualbell
+
+" Backups
+set nobackup
+set nowritebackup
+set directory=$HOME/.vim/tmp//,.
+
+" Leader
+let mapleader = ","
+
+" FuzzyFinder
+map <Leader>t :FuzzyFinderTextMate<Enter>
+
+" Searching
+set ignorecase
+set smartcase
+set incsearch
+set showmatch
+set hlsearch
" Soft/hard wrapping
set wrap
@@ -19,8 +43,6 @@
set formatoptions=qrn1
set ruler
-set incsearch
-set showmatch
set backspace=indent,eol,start
" Use the same symbols as TextMate for tabstops and EOLs
@@ -30,9 +52,6 @@
" Line numbers
set nu
-" Highlight search results
-set hls
-
" Color scheme (terminal)
syntax on
set background=dark
@@ -58,4 +77,4 @@
vnoremap <F1> za
" NERDTree ignore filters
-let NERDTreeIgnore=['.vim$', '\~$', '.*\.pyc$', 'pip-log\.txt$']
\ No newline at end of file
+let NERDTreeIgnore=['.vim$', '\~$', '.*\.pyc$', 'pip-log\.txt$']