forked from tpounds/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
49 lines (37 loc) · 736 Bytes
/
.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
44
45
46
47
48
49
runtime bundle/vim-pathogen/autoload/pathogen.vim
execute pathogen#infect()
color zenburn
let g:zenburn_high_Contrast = 1
syntax on
set nowrap
set number
set expandtab
set tabstop=3
set shiftwidth=3
set showtabline=2
set showcmd
set backupdir=~/.vim/backups
set directory=~/.vim/swaps
set undodir=~/.vim/undo
set hlsearch
set incsearch
set showmatch
set ignorecase
set smartcase
set visualbell t_vb=
set errorbells
" highlight column widths
set colorcolumn=80,120
" highlight trailing spaces
set list listchars=tab:\ \ ,trail:▒
" disable arrow keys
map <up> <nop>
map <down> <nop>
map <left> <nop>
map <right> <nop>
imap <up> <nop>
imap <down> <nop>
imap <left> <nop>
imap <right> <nop>
" disable Ex-Mode
nnoremap Q <nop>