-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
31 lines (23 loc) · 652 Bytes
/
vimrc
File metadata and controls
31 lines (23 loc) · 652 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
runtime vimrc_example.vim
set nocompatible
let mapleader = ","
set tabstop=2
set smarttab
set shiftwidth=2
set autoindent
set expandtab
set backspace=2 " Let backspace delete line endings etc
set hidden " enable switching buffers when not saved
set ignorecase " ignore case in searches
set smartcase " don't ignore case if a search string contains an upper case character
set number
set hlsearch
set nowrap
syntax on
colorscheme ir_black
let g:fuzzy_ignore = "*.log"
let g:fuzzy_matching_limit = 70
map <leader>t :FuzzyFinderTextMate<CR>
map <leader>b :FuzzyFinderBuffer<CR>
map <leader>d :execute 'NERDTreeToggle ' . getcwd()<CR>
map <C-q> @q