-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathgvimrc
More file actions
22 lines (16 loc) · 761 Bytes
/
gvimrc
File metadata and controls
22 lines (16 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
set mousehide " Hide the mouse when typing text.
set guioptions=eg " Show tabs, hide toolbar and scrollbar.
set linespace=0 " 0 pixels between lines
colorscheme jellybeans_pda
" Better colours for folding.
highlight Folded guifg=#EEEEEE guibg=#333333
" use the fancy powerline symbols
let g:airline_powerline_fonts = 1
if has("gui_macvim")
set guifont=Meslo\ LG\ S\ DZ\ for\ Powerline:h15 " :set gfn=*, then :set gfn?
set fuoptions=maxvert,maxhorz " Go to full width and height in full screen mode.
else
" Linux settings
set guifont=Meslo\ LG\ S\ DZ\ for\ Powerline\ 13 " :set gfn=*, then :set gfn?
map <silent> <F11> :call system("wmctrl -ir " . v:windowid . " -b toggle,fullscreen")<CR>
end