-
Notifications
You must be signed in to change notification settings - Fork 0
/
gvimrc
71 lines (60 loc) · 1.61 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
if has("gui_macvim") && has("gui_running")
" Fullscreen takes up entire screen
set fuoptions=maxhorz,maxvert
" Command-T for CtrlP
macmenu &File.New\ Tab key=<D-T>
"map <D-t> :CtrlP<CR>
"map <D-t> :let g:ctrlp_default_input = 0<cr>:CtrlP<cr>
"map <Leader><D-t> :let g:ctrlp_default_input = 0<cr>:CtrlPClearCache<cr>:CtrlP<cr>
"imap <D-t> <Esc>:let g:ctrlp_default_input = 0<cr>:CtrlP<cr>
" Command-Return for fullscreen
macmenu Window.Toggle\ Full\ Screen\ Mode key=<D-CR>
" Command-Shift-F for Ack
map <D-F> :Ack<space>
" Map Command-# to switch tabs
map <D-0> 0gt
imap <D-0> <Esc>0gt
map <D-1> 1gt
imap <D-1> <Esc>1gt
map <D-2> 2gt
imap <D-2> <Esc>2gt
map <D-3> 3gt
imap <D-3> <Esc>3gt
map <D-4> 4gt
imap <D-4> <Esc>4gt
map <D-5> 5gt
imap <D-5> <Esc>5gt
map <D-6> 6gt
imap <D-6> <Esc>6gt
map <D-7> 7gt
imap <D-7> <Esc>7gt
map <D-8> 8gt
imap <D-8> <Esc>8gt
map <D-9> 9gt
imap <D-9> <Esc>9gt
" Command-Option-ArrowKey to switch viewports
map <D-M-Up> <C-w>k
imap <D-M-Up> <Esc> <C-w>k
map <D-M-Down> <C-w>j
imap <D-M-Down> <Esc> <C-w>j
map <D-M-Right> <C-w>l
imap <D-M-Right> <Esc> <C-w>l
map <D-M-Left> <C-w>h
imap <D-M-Left> <C-w>h
macmenu &File.Close key=<nop>
map <D-w> :CommandW<cr>
imap <D-w> <Esc>:CommandW<CR>
endif
" Don't beep
set visualbell
" Start without the toolbar
set guioptions-=T
" Get rid of scroll bars
set guioptions-=L
set guioptions-=r
set guifont=Inconsolata-g\ for\ Powerline:h14
"set guifont=Menlo:h14
" Include user's local vim config
if filereadable(expand("~/.gvimrc.local"))
source ~/.gvimrc.local
endif