-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
59 lines (46 loc) · 1000 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
50
51
52
53
54
55
56
57
58
set nocompatible
execute pathogen#infect()
"-----------------------------------------
" Display settings
set guioptions-=T
set guioptions-=r
set guioptions-=L
set title
set cursorline
set number
set scrolloff=1
set backspace=indent,eol,start
"-----------------------------------------
" Search settings
set ignorecase
set smartcase
set incsearch
set hlsearch
"-----------------------------------------
" Syntax
filetype plugin indent on
syntax on
set nospell
"-----------------------------------------
" Beep
" set visualbell
set noerrorbells
"-----------------------------------------
" Font
set guifont=Monaco\ 11
" set antialias
"
"-----------------------------------------
"colorscheme molokai
if has('gui_running')
set background=light
colorscheme solarized
endif
"-----------------------------------------
" Extra Plugins
" autocmd vimenter * NERDTree
"-----------------------------------------
noremap <Up> <Nop>
noremap <Down> <Nop>
noremap <Left> <Nop>
noremap <Right> <Nop>