summaryrefslogtreecommitdiffstats
path: root/infest/skel/home/.vimrc
blob: 22bbf99d08c5a4c6577db8614ed44bdc69bd0f68 (plain)
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
" do the right thing all the time
"
" Colors and stuff
syntax on
set background=dark




" searching
set hlsearch
set showmatch
set ignorecase
set incsearch
set wildignore=*.o,*.obj,*.bak,*.pyc

" tabbing
set tabstop=2
set et
set sw=2
set smarttab
set autoindent

" vim magic
filetype plugin indent on


" fuck you, help command
inoremap <F1> <ESC>
nnoremap <F1> <ESC>
vnoremap <F1> <ESC>