forked from richoH/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gvimrc
41 lines (33 loc) · 873 Bytes
/
gvimrc
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
color jellybeans
set guifont=Bitstream\ Vera\ Sans\ Mono\ 8
":cANSI
set guioptions-=r
set guioptions-=m
set guioptions-=T
set guioptions-=L
set guioptions-=e
set guioptions+=c
set noballooneval
set nomousehide
" Make pretend like we're a urxvt
imap <M-C-p> <C-r>*
nmap <M-C-p> i<C-r>*<esc>
cmap <M-C-p> <C-r>*
" This doesn't work in a console, makes sense to only bind it in gvim
nmap <C-Tab> :tabnext<cr>
nmap <C-S-Tab> :tabprev<cr>
if has("gui_macvim")
set transparency=2
endif
" XXX Important, code here and below will only be evaluated on first boot.
" Don't make changes that should be loaded again here
if exists('g:resized_terminal') || &cp
finish
endif
if has("gui_macvim")
" Epic kludge for titling hax etc..
let $PATH=$HOME . "/bin:" . "/usr/local/bin/:" . $PATH
endif
let g:resized_terminal = 1
set columns=120
set lines=40