-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gvimrc
More file actions
32 lines (24 loc) · 661 Bytes
/
.gvimrc
File metadata and controls
32 lines (24 loc) · 661 Bytes
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
source $HOME/.vimrc
" if has('gui_running')
" " Always show file types in menu
" let do_syntax_sel_menu=1
" endif
if has("gui_running") && has("menu")
let do_syntax_sel_menu = 1
autocmd VimEnter * map {lhs} {rhs}
endif
set ft=cpp
set nolist
set showmatch " Show matching brackets.
set mat=5 " Bracket blinking.
set novisualbell " No blinking .
set noerrorbells " No noise.
set laststatus=2 " Always show status line.
set mousehide " Hide mouse after chars typed
set mouse=a " Mouse in all modes
""""""""
" IMPORTANT: enabling these settings does bad things in MacVim
" set backup=on
" set syntax on
" set writebackup=on/off
""""""""