wilson (owner)

Revisions

gist: 33585 Download_button fork
public
Public Clone URL: git://gist.github.com/33585.git
Embed All Files: show embed
.vimrc #
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
32
33
34
35
36
37
38
39
40
41
42
43
set nocompatible
set backspace=indent,eol,start whichwrap+=<,>,[,]
set history=50
set incsearch
set hlsearch
set background=dark
colors ir_black
vnoremap <BS> d
 
filetype on
filetype plugin on
filetype indent on
set tabstop=2
set shiftwidth=2
set softtabstop=2
set expandtab
set noautoindent
set nosmartindent
set ruler
set number
set hidden
set visualbell
set tags=tags;/
set wildmode=list:longest
 
" From Cameron McBride, via gmail
set formatoptions=tcqronwl " see :help fo-table
 
let g:spacehi_tabcolor="ctermfg=red cterm=underline guifg=#ff0000 guibg=red gui=underline"
let g:spacehi_spacecolor="ctermfg=yellow cterm=underline guifg=#00ffff guibg=yellow gui=underline"
syntax on
 
nnoremap <space> za
nmap <silent> <D-[> <ESC>:bp<CR>
nmap <silent> <D-]> <ESC>:bn<CR>
 
nmap <silent> <Leader>] :tselect<CR>
nmap <silent> <Leader>[ :pop<CR>
nmap <silent> <C-Right> <C-w>l
nmap <silent> <C-Left> <C-w>h
nmap <silent> <C-Up> <C-w>k
nmap <silent> <C-Down> <C-w>j